diff options
author | 2013-09-18 23:18:28 -0700 | |
---|---|---|
committer | 2013-09-18 23:18:28 -0700 | |
commit | 418a73d3422058fd6702edaf645e88867de3c8bc (patch) | |
tree | aa0be4abd2b5b9a3d3cea9c103775debad8b8209 /java/src/com/android/inputmethod/latin/Suggest.java | |
parent | 58b6df44e1713f80665be9fa831a410b52c78354 (diff) | |
parent | ff493744a3f3593f9a8c78e87d7ba813759e46b6 (diff) | |
download | latinime-418a73d3422058fd6702edaf645e88867de3c8bc.tar.gz latinime-418a73d3422058fd6702edaf645e88867de3c8bc.tar.xz latinime-418a73d3422058fd6702edaf645e88867de3c8bc.zip |
am ff493744: Merge "Quit skipping user history dictionary for gesture."
* commit 'ff493744a3f3593f9a8c78e87d7ba813759e46b6':
Quit skipping user history dictionary for gesture.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/Suggest.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/Suggest.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/Suggest.java b/java/src/com/android/inputmethod/latin/Suggest.java index 1684d47b5..6c18c948f 100644 --- a/java/src/com/android/inputmethod/latin/Suggest.java +++ b/java/src/com/android/inputmethod/latin/Suggest.java @@ -361,12 +361,6 @@ public final class Suggest { // At second character typed, search the unigrams (scores being affected by bigrams) for (final String key : mDictionaries.keySet()) { - // Skip User history dictionary for lookup - // TODO: The user history dictionary should just override getSuggestionsWithSessionId - // to make sure it doesn't return anything and we should remove this test - if (key.equals(Dictionary.TYPE_USER_HISTORY)) { - continue; - } final Dictionary dictionary = mDictionaries.get(key); suggestionsSet.addAll(dictionary.getSuggestionsWithSessionId(wordComposer, prevWordForBigram, proximityInfo, blockOffensiveWords, |