diff options
author | 2013-07-05 18:23:22 +0900 | |
---|---|---|
committer | 2013-07-05 19:24:40 +0900 | |
commit | 4be6198cb73cc24e10834153c4e049644ed187e3 (patch) | |
tree | 14c9f466e43e5f2b24a99deea518e5daafdfbcd2 /java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | |
parent | 72c2feb57369527b5f0d2b89505f94503978b928 (diff) | |
download | latinime-4be6198cb73cc24e10834153c4e049644ed187e3.tar.gz latinime-4be6198cb73cc24e10834153c4e049644ed187e3.tar.xz latinime-4be6198cb73cc24e10834153c4e049644ed187e3.zip |
Reorganize Utils class
Change-Id: I7294d1547def5dcfcae9d1d53b277cb3cc9f2d18
Diffstat (limited to 'java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java index 2218b3bc6..ff24e2d2c 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java +++ b/java/src/com/android/inputmethod/latin/suggestions/MoreSuggestions.java @@ -31,7 +31,6 @@ import com.android.inputmethod.keyboard.internal.KeyboardParams; import com.android.inputmethod.latin.R; import com.android.inputmethod.latin.SuggestedWords; import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo; -import com.android.inputmethod.latin.utils.Utils; public final class MoreSuggestions extends Keyboard { public static final int SUGGESTION_CODE_BASE = 1024; @@ -207,7 +206,7 @@ public final class MoreSuggestions extends Keyboard { final int y = params.getY(index); final int width = params.getWidth(index); final String word = mSuggestedWords.getWord(index); - final String info = Utils.getDebugInfo(mSuggestedWords, index); + final String info = mSuggestedWords.getDebugString(index); final int indexInMoreSuggestions = index + SUGGESTION_CODE_BASE; final Key key = new Key( params, word, info, KeyboardIconsSet.ICON_UNDEFINED, indexInMoreSuggestions, |