diff options
author | 2013-10-18 17:42:59 +0000 | |
---|---|---|
committer | 2013-10-18 17:43:00 +0000 | |
commit | 47568d5e19ed907485f7cb435c3944ccc0cb4411 (patch) | |
tree | 9fd680abbf175392501efc9e15c6c3be859a0ca7 /java/src | |
parent | 146cf238792c4748aa726a440fb96a33b4260fa5 (diff) | |
parent | 029d9eeb385dccdea0f6a76987b857f2b8f7d815 (diff) | |
download | latinime-47568d5e19ed907485f7cb435c3944ccc0cb4411.tar.gz latinime-47568d5e19ed907485f7cb435c3944ccc0cb4411.tar.xz latinime-47568d5e19ed907485f7cb435c3944ccc0cb4411.zip |
Merge "Fix: Suggested words from user history are invalid. DO NOT MERGE." into klp-dev
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java b/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java index a1e36006b..1de15a333 100644 --- a/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java +++ b/java/src/com/android/inputmethod/latin/personalization/DecayingExpandableBinaryDictionaryBase.java @@ -114,15 +114,6 @@ public abstract class DecayingExpandableBinaryDictionaryBase extends ExpandableB } /** - * Return whether the passed charsequence is in the dictionary. - */ - @Override - public boolean isValidWord(final String word) { - // Words included only in the user history should be treated as not in dictionary words. - return false; - } - - /** * Pair will be added to the decaying dictionary. * * The first word may be null. That means we don't know the context, in other words, |