aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com
diff options
context:
space:
mode:
Diffstat (limited to 'java/src/com')
-rw-r--r--java/src/com/android/inputmethod/latin/UserHistoryDictIOUtils.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/UserHistoryDictIOUtils.java b/java/src/com/android/inputmethod/latin/UserHistoryDictIOUtils.java
index 2963e3771..942c82837 100644
--- a/java/src/com/android/inputmethod/latin/UserHistoryDictIOUtils.java
+++ b/java/src/com/android/inputmethod/latin/UserHistoryDictIOUtils.java
@@ -135,7 +135,7 @@ public class UserHistoryDictIOUtils {
}
if (word1 == null) { // unigram
- fusionDict.add(word2, freq, null);
+ fusionDict.add(word2, freq, null, false /* isNotAWord */);
} else { // bigram
fusionDict.setBigram(word1, word2, freq);
}