aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/SuggestHelper.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/SuggestHelper.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/SuggestHelper.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/tests/src/com/android/inputmethod/latin/SuggestHelper.java b/tests/src/com/android/inputmethod/latin/SuggestHelper.java
index 759bfa18a..932098a39 100644
--- a/tests/src/com/android/inputmethod/latin/SuggestHelper.java
+++ b/tests/src/com/android/inputmethod/latin/SuggestHelper.java
@@ -116,13 +116,6 @@ public class SuggestHelper {
return word;
}
- private void showList(String title, List<CharSequence> suggestions) {
- Log.i(TAG, title);
- for (int i = 0; i < suggestions.size(); i++) {
- Log.i(title, suggestions.get(i) + ", ");
- }
- }
-
private boolean isDefaultSuggestion(List<CharSequence> suggestions, CharSequence word) {
// Check if either the word is what you typed or the first alternative
return suggestions.size() > 0 &&
@@ -191,8 +184,6 @@ public class SuggestHelper {
boolean isUserBigramSuggestion(CharSequence previous, char typed,
CharSequence expected) {
- WordComposer word = createWordComposer(Character.toString(typed));
-
if (mUserBigram == null) return false;
flushUserBigrams();