diff options
author | 2012-06-08 16:00:02 +0900 | |
---|---|---|
committer | 2012-06-08 16:23:18 +0900 | |
commit | 7214617622fce8f3fea6620e782c16336260a2a3 (patch) | |
tree | 46668d4ada75b6fb801c3a57c8f8ee3d6ad1dfe7 /java/src/com/android/inputmethod/latin/ExpandableDictionary.java | |
parent | ab96376c9eae0545b0d037b9904a7cd616308163 (diff) | |
download | latinime-7214617622fce8f3fea6620e782c16336260a2a3.tar.gz latinime-7214617622fce8f3fea6620e782c16336260a2a3.tar.xz latinime-7214617622fce8f3fea6620e782c16336260a2a3.zip |
Remove a slew of Eclipse warnings.
Change-Id: I03236386aea13fbd4fb8eaeee18e0008aa136502
Diffstat (limited to '')
-rw-r--r-- | java/src/com/android/inputmethod/latin/ExpandableDictionary.java | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java index 34a92fd30..4a5471c85 100644 --- a/java/src/com/android/inputmethod/latin/ExpandableDictionary.java +++ b/java/src/com/android/inputmethod/latin/ExpandableDictionary.java @@ -514,8 +514,10 @@ public class ExpandableDictionary extends Dictionary { /** * Adds bigrams to the in-memory trie structure that is being used to retrieve any word + * @param word1 the first word of this bigram + * @param word2 the second word of this bigram * @param frequency frequency for this bigram - * @param addFrequency if true, it adds to current frequency, else it overwrites the old value + * @param fcp an instance of ForgettingCurveParams to use for decay policy * @return returns the final bigram frequency */ private int setBigramAndGetFrequency( |