From 8251036616dc30db9ad1a981cc5af5843d474647 Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Mon, 3 Sep 2012 11:58:23 +0900 Subject: [PATCH] Match calls in I8a70e43b for Icbe60bdf Change-Id: I3a9eaaa018cd338ca8d9aa09c0fa58800b637e19 --- .../com/android/inputmethod/latin/UserHistoryDictIOUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }