diff options
author | 2012-06-21 13:40:51 +0900 | |
---|---|---|
committer | 2012-06-26 17:54:49 +0900 | |
commit | 2f1b6c9ea438841fc2a7262a0593739c3dc82782 (patch) | |
tree | ec2d859fead55679844d2c387438297267612bad /java/src/com/android/inputmethod/latin/Suggest.java | |
parent | 89239eeb744b1cdb983fb50ccba9c9e82e85d571 (diff) | |
download | latinime-2f1b6c9ea438841fc2a7262a0593739c3dc82782.tar.gz latinime-2f1b6c9ea438841fc2a7262a0593739c3dc82782.tar.xz latinime-2f1b6c9ea438841fc2a7262a0593739c3dc82782.zip |
Remove the callback argument to getBigrams() (A16)
Bug: 6252660
Bug: 6166228
Bug: 2704000
Bug: 6225530
Change-Id: I7457ac04f8cd4019fb86c986725aae3de1b1a65e
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index 29ecbe9ba..3729c99e4 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -263,10 +263,9 @@ public class Suggest implements Dictionary.WordCallback { final int dicTypeId = sDictKeyToDictIndex.get(key); final Dictionary dictionary = mBigramDictionaries.get(key); final ArrayList<SuggestedWordInfo> suggestions = - dictionary.getBigrams(wordComposer, prevWordForBigram, this); + dictionary.getBigrams(wordComposer, prevWordForBigram); if (null != lowerPrevWord) { - suggestions.addAll(dictionary.getBigrams(wordComposer, lowerPrevWord, - this)); + suggestions.addAll(dictionary.getBigrams(wordComposer, lowerPrevWord)); } for (final SuggestedWordInfo suggestion : suggestions) { final String suggestionStr = suggestion.mWord.toString(); |