aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/Dictionary.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-07-09 20:13:22 +0900
committerJean Chalard <jchalard@google.com>2012-07-10 19:30:46 +0900
commitf5943153ad2ba611feec916119dca2343a1ef6de (patch)
tree4d4c8c4021ca68809838b0cfcf8f5e283abaadf6 /java/src/com/android/inputmethod/latin/Dictionary.java
parentb30d2185f24e3d531f5d46249e7c97391705e469 (diff)
downloadlatinime-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/Dictionary.java')
-rw-r--r--java/src/com/android/inputmethod/latin/Dictionary.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/java/src/com/android/inputmethod/latin/Dictionary.java b/java/src/com/android/inputmethod/latin/Dictionary.java
index 38ef00da7..fd40aa6da 100644
--- a/java/src/com/android/inputmethod/latin/Dictionary.java
+++ b/java/src/com/android/inputmethod/latin/Dictionary.java
@@ -65,28 +65,6 @@ public abstract class Dictionary {
final CharSequence prevWord, final ProximityInfo proximityInfo);
/**
- * Searches for words in the dictionary that match the characters in the composer. Matched
- * words are returned as an ArrayList.
- * @param composer the key sequence to match with coordinate info, as a WordComposer
- * @param prevWordForBigrams the previous word, or null if none
- * @param proximityInfo the object for key proximity. May be ignored by some implementations.
- * @return the list of suggestions
- */
- // TODO: remove this
- abstract protected ArrayList<SuggestedWordInfo> getWords(final WordComposer composer,
- final CharSequence prevWordForBigrams, final ProximityInfo proximityInfo);
-
- /**
- * Searches for pairs in the bigram dictionary that matches the previous word.
- * @param composer the key sequence to match
- * @param previousWord the word before
- * @return the list of suggestions
- */
- // TODO: remove this
- abstract protected ArrayList<SuggestedWordInfo> getBigrams(final WordComposer composer,
- final CharSequence previousWord);
-
- /**
* Checks if the given word occurs in the dictionary
* @param word the word to search for. The search should be case-insensitive.
* @return true if the word exists, false otherwise