Skip to content
Snippets Groups Projects
Commit a3f5f51e authored by Jean Chalard's avatar Jean Chalard
Browse files

Fix a bug where a log would mysteriously not work

Change-Id: I5ca77ed65e95a6d357215c0e730238fb463986bb
parent 22657dcb
No related branches found
No related tags found
No related merge requests found
......@@ -432,10 +432,9 @@ public class Suggest {
suggestions.add(pos, transformedWordInfo);
if (suggestions.size() > prefMaxSuggestions) {
suggestions.remove(prefMaxSuggestions);
} else {
LatinImeLogger.onAddSuggestedWord(transformedWordInfo.mWord.toString(), dicTypeId,
dataTypeForLog);
}
LatinImeLogger.onAddSuggestedWord(transformedWordInfo.mWord.toString(), dicTypeId,
dataTypeForLog);
return true;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment