diff options
author | 2013-08-23 07:58:37 +0000 | |
---|---|---|
committer | 2013-08-23 07:58:37 +0000 | |
commit | cdc8fcd64450ebe0274090596389f29f0e3e6de2 (patch) | |
tree | 081477c8651b08b50d79a6e30c18bede2653ec00 /java/src | |
parent | 02833d11c3191282b7a05bca4e9f19a7b036980e (diff) | |
parent | 1b50a42b7c80f3cd355b818cf02e6e843a636deb (diff) | |
download | latinime-cdc8fcd64450ebe0274090596389f29f0e3e6de2.tar.gz latinime-cdc8fcd64450ebe0274090596389f29f0e3e6de2.tar.xz latinime-cdc8fcd64450ebe0274090596389f29f0e3e6de2.zip |
Merge "Fix addWord."
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableDictionary.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java index 516b8426c..fc87cfac2 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java @@ -20,6 +20,7 @@ import android.content.Context; import android.text.TextUtils; import android.util.Log; +import com.android.inputmethod.annotations.UsedForTesting; import com.android.inputmethod.keyboard.ProximityInfo; import com.android.inputmethod.latin.SuggestedWords.SuggestedWordInfo; import com.android.inputmethod.latin.utils.CollectionUtils; @@ -231,7 +232,7 @@ public class ExpandableDictionary extends Dictionary { childNode.mShortcutOnly = isShortcutOnly; children.add(childNode); } - if (wordLength == depth + 1 && shortcutTarget != null) { + if (wordLength == depth + 1) { // Terminate this word childNode.mTerminal = true; if (isShortcutOnly) { @@ -351,6 +352,7 @@ public class ExpandableDictionary extends Dictionary { /** * Returns the word's frequency or -1 if not found */ + @UsedForTesting protected int getWordFrequency(final String word) { // Case-sensitive search final Node node = searchNode(mRoots, word, 0, word.length()); |