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

Cleanup (A7)

Change-Id: Iba97e0062b702c005ab3ff9ce59f181d19ab7c98
parent ed83d4b1
No related branches found
No related tags found
No related merge requests found
...@@ -238,11 +238,9 @@ public class Suggest { ...@@ -238,11 +238,9 @@ public class Suggest {
} }
if (whitelistedWord != null) { if (whitelistedWord != null) {
final SuggestedWordInfo whitelistSuggestion; suggestionsSet.add(new SuggestedWordInfo(whitelistedWord,
whitelistSuggestion = new SuggestedWordInfo(whitelistedWord,
SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_WHITELIST, SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_WHITELIST,
Dictionary.TYPE_WHITELIST); Dictionary.TYPE_WHITELIST));
suggestionsSet.add(whitelistSuggestion);
} }
final ArrayList<SuggestedWordInfo> suggestionsContainer = final ArrayList<SuggestedWordInfo> suggestionsContainer =
......
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