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/LatinIME.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/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index a6d2b7a05..08d54c6ff 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -924,7 +924,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar } final List<SuggestedWords.SuggestedWordInfo> applicationSuggestedWords = - SuggestedWords.Builder.getFromApplicationSpecifiedCompletions( + SuggestedWords.getFromApplicationSpecifiedCompletions( applicationSpecifiedCompletions); SuggestedWords.Builder builder = new SuggestedWords.Builder(applicationSuggestedWords, false /* typedWordValid */, @@ -1788,7 +1788,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar previousSuggestions = SuggestedWords.EMPTY; } final ArrayList<SuggestedWords.SuggestedWordInfo> typedWordAndPreviousSuggestions = - SuggestedWords.Builder.getTypedWordAndPreviousSuggestions( + SuggestedWords.getTypedWordAndPreviousSuggestions( typedWord, previousSuggestions); final SuggestedWords.Builder obsoleteSuggestionsBuilder = new SuggestedWords.Builder(typedWordAndPreviousSuggestions, |