Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 04d6649d authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "Remove access to the whitelist class." into jb-mr1-dev

parents 753f7b12 3e43e699
Loading
Loading
Loading
Loading
+0 −9
Original line number Diff line number Diff line
@@ -216,15 +216,6 @@ public class Suggest {
                    wordComposerForLookup, prevWordForBigram, proximityInfo));
        }

        final CharSequence whitelistedWordFromWhitelistDictionary =
                mWhiteListDictionary.getWhitelistedWord(consideredWord);
        if (whitelistedWordFromWhitelistDictionary != null) {
            // MAX_SCORE ensures this will be considered strong enough to be auto-corrected
            suggestionsSet.add(new SuggestedWordInfo(whitelistedWordFromWhitelistDictionary,
                    SuggestedWordInfo.MAX_SCORE, SuggestedWordInfo.KIND_WHITELIST,
                    Dictionary.TYPE_WHITELIST));
        }

        final CharSequence whitelistedWord;
        if (suggestionsSet.isEmpty()) {
            whitelistedWord = null;