aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-03-13 21:22:22 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-03-13 21:22:22 -0700
commitd42b0238f9f7cedf9b991e55f528662029b63b88 (patch)
tree0243c4f1a38531a50785d57b6fa949dde9b7a2ea /java/src/com/android/inputmethod/latin/LatinIME.java
parent7d384c73da3840c49cefaf1ae5b4a7c44d983716 (diff)
parent88bf1ba5263f5a5c1df367ddc401db4109ef8677 (diff)
downloadlatinime-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.java4
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,