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/LatinIME.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/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, |