diff options
author | 2013-08-23 15:35:54 +0900 | |
---|---|---|
committer | 2013-08-23 16:56:48 +0900 | |
commit | 1b50a42b7c80f3cd355b818cf02e6e843a636deb (patch) | |
tree | fc6372d3a6cd8c0c5a22499b39c014db43dc082b /java/src | |
parent | c02a365485cb777137cbab8ff8f60c4b36fa0f7a (diff) | |
download | latinime-1b50a42b7c80f3cd355b818cf02e6e843a636deb.tar.gz latinime-1b50a42b7c80f3cd355b818cf02e6e843a636deb.tar.xz latinime-1b50a42b7c80f3cd355b818cf02e6e843a636deb.zip |
Fix addWord.
Change-Id: Ib71dbd5954f44ca80733fa4b1048c829e1df138a
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()); |