diff options
author | 2012-05-25 03:32:40 -0700 | |
---|---|---|
committer | 2012-05-25 03:32:40 -0700 | |
commit | 41cf0ced38912c5f4a6d11a88c0deb4ac4d01860 (patch) | |
tree | 212f0bc90d13cb8eddb3158d9b6ce93f8720a647 /java/src/com/android/inputmethod/latin/ExpandableDictionary.java | |
parent | eceedfb887d3cb9d1300aaa1cdc5dc3510d05549 (diff) | |
parent | b6c314e4caf3b86c2bafcea865dc2cdd9aa38735 (diff) | |
download | latinime-41cf0ced38912c5f4a6d11a88c0deb4ac4d01860.tar.gz latinime-41cf0ced38912c5f4a6d11a88c0deb4ac4d01860.tar.xz latinime-41cf0ced38912c5f4a6d11a88c0deb4ac4d01860.zip |
am b6c314e4: Merge "Clean up some compiler warnings" into jb-dev
* commit 'b6c314e4caf3b86c2bafcea865dc2cdd9aa38735':
Clean up some compiler warnings
Diffstat (limited to 'java/src/com/android/inputmethod/latin/ExpandableDictionary.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableDictionary.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java index dd9c57e0c..6c457afd2 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java @@ -309,7 +309,8 @@ public class ExpandableDictionary extends Dictionary { * @param word the word to insert, as an array of code points * @param depth the depth of the node in the tree * @param finalFreq the frequency for this word - * @return whether there is still space for more words. {@see Dictionary.WordCallback#addWord}. + * @return whether there is still space for more words. + * @see Dictionary.WordCallback#addWord(char[], int, int, int, int, int) */ private boolean addWordAndShortcutsFromNode(final Node node, final char[] word, final int depth, final int finalFreq, final WordCallback callback) { |