diff options
author | 2012-07-09 20:13:22 +0900 | |
---|---|---|
committer | 2012-07-10 19:30:46 +0900 | |
commit | f5943153ad2ba611feec916119dca2343a1ef6de (patch) | |
tree | 4d4c8c4021ca68809838b0cfcf8f5e283abaadf6 /java/src/com/android/inputmethod/latin/WhitelistDictionary.java | |
parent | b30d2185f24e3d531f5d46249e7c97391705e469 (diff) | |
download | latinime-f5943153ad2ba611feec916119dca2343a1ef6de.tar.gz latinime-f5943153ad2ba611feec916119dca2343a1ef6de.tar.xz latinime-f5943153ad2ba611feec916119dca2343a1ef6de.zip |
Cleanup old methods (A90)
Change-Id: I5435cef8ac6be523934ffa394952cb120c8e89d6
Diffstat (limited to 'java/src/com/android/inputmethod/latin/WhitelistDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/WhitelistDictionary.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/WhitelistDictionary.java b/java/src/com/android/inputmethod/latin/WhitelistDictionary.java index be2c80e0e..14476dcf0 100644 --- a/java/src/com/android/inputmethod/latin/WhitelistDictionary.java +++ b/java/src/com/android/inputmethod/latin/WhitelistDictionary.java @@ -92,10 +92,9 @@ public class WhitelistDictionary extends ExpandableDictionary { } @Override - protected ArrayList<SuggestedWordInfo> getWords(final WordComposer composer, + public ArrayList<SuggestedWordInfo> getSuggestions(final WordComposer composer, final CharSequence prevWord, final ProximityInfo proximityInfo) { - // Whitelist does not supply suggestions (actually it should not even implement the - // Dictionary interface, as it responds to none of it, but it does for legacy reasons) + // Whitelist does not supply any suggestions or predictions. return null; } |