diff options
author | 2013-08-23 01:00:57 -0700 | |
---|---|---|
committer | 2013-08-23 01:00:57 -0700 | |
commit | 947c95377eb21005714bf25a566229db587b75b8 (patch) | |
tree | 7d69fb17e287045c9142177a6c47e5a1218b1db3 /java/src | |
parent | 3a08074cb535eecdd70a0f8ad1ff7af78527a9e2 (diff) | |
parent | cdc8fcd64450ebe0274090596389f29f0e3e6de2 (diff) | |
download | latinime-947c95377eb21005714bf25a566229db587b75b8.tar.gz latinime-947c95377eb21005714bf25a566229db587b75b8.tar.xz latinime-947c95377eb21005714bf25a566229db587b75b8.zip |
am cdc8fcd6: Merge "Fix addWord."
* commit 'cdc8fcd64450ebe0274090596389f29f0e3e6de2':
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()); |