diff options
author | 2012-03-13 20:39:21 +0900 | |
---|---|---|
committer | 2012-03-14 13:10:22 +0900 | |
commit | 88bf1ba5263f5a5c1df367ddc401db4109ef8677 (patch) | |
tree | 57b82f940e391fd6021914fc544073ff05f8c03a /java/src/com/android/inputmethod/latin/Suggest.java | |
parent | 8e19b1183e4925b7c396de45a5e4e7d67a7b876a (diff) | |
download | latinime-88bf1ba5263f5a5c1df367ddc401db4109ef8677.tar.gz latinime-88bf1ba5263f5a5c1df367ddc401db4109ef8677.tar.xz latinime-88bf1ba5263f5a5c1df367ddc401db4109ef8677.zip |
Move up the static methods of the Builder
Change-Id: Ic3e07b745b7b24cae0f772ea49e0de615b44caf9
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; |