diff options
author | 2012-05-25 03:21:30 -0700 | |
---|---|---|
committer | 2012-05-25 03:21:30 -0700 | |
commit | b6c314e4caf3b86c2bafcea865dc2cdd9aa38735 (patch) | |
tree | 8890dcf282216d9080fb6b9b8261f32043d0e8ab /java/src/com/android/inputmethod/latin/ExpandableDictionary.java | |
parent | 383f4d6a698b1eb208b55c59aea72d6c1cecc778 (diff) | |
parent | 93ebf74bae44728e0d5f7e738ea28376187a876e (diff) | |
download | latinime-b6c314e4caf3b86c2bafcea865dc2cdd9aa38735.tar.gz latinime-b6c314e4caf3b86c2bafcea865dc2cdd9aa38735.tar.xz latinime-b6c314e4caf3b86c2bafcea865dc2cdd9aa38735.zip |
Merge "Clean up some compiler warnings" into jb-dev
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) { |