diff options
author | 2012-03-13 21:22:22 -0700 | |
---|---|---|
committer | 2012-03-13 21:22:22 -0700 | |
commit | d42b0238f9f7cedf9b991e55f528662029b63b88 (patch) | |
tree | 0243c4f1a38531a50785d57b6fa949dde9b7a2ea /java/src/com/android/inputmethod/latin/Suggest.java | |
parent | 7d384c73da3840c49cefaf1ae5b4a7c44d983716 (diff) | |
parent | 88bf1ba5263f5a5c1df367ddc401db4109ef8677 (diff) | |
download | latinime-d42b0238f9f7cedf9b991e55f528662029b63b88.tar.gz latinime-d42b0238f9f7cedf9b991e55f528662029b63b88.tar.xz latinime-d42b0238f9f7cedf9b991e55f528662029b63b88.zip |
Merge "Move up the static methods of the Builder"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index b02c9738e..3acbd2792 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -270,7 +270,7 @@ public class Suggest implements Dictionary.WordCallback { StringUtils.removeDupes(mSuggestions); return new SuggestedWords.Builder( - SuggestedWords.Builder.getFromCharSequenceList(mSuggestions), + SuggestedWords.getFromCharSequenceList(mSuggestions), false /* typedWordValid */, false /* hasMinimalSuggestion */, false /* allowsToBeAutoCorrected */, @@ -428,7 +428,7 @@ public class Suggest implements Dictionary.WordCallback { "--", false)); } } else { - scoreInfoList = SuggestedWords.Builder.getFromCharSequenceList(mSuggestions); + scoreInfoList = SuggestedWords.getFromCharSequenceList(mSuggestions); } boolean autoCorrectionAvailable = hasAutoCorrection; |