Skip to content
Snippets Groups Projects
Commit ebe0544f authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Remove redundant method AutoCorrection.isInTheDictionary

Change-Id: I0737fb0b68f411f4db06014f2d94804935808922
parent df8f0fb6
No related branches found
No related tags found
No related merge requests found
......@@ -73,13 +73,6 @@ public final class AutoCorrection {
return maxFreq;
}
// Returns true if this is in any of the dictionaries.
public static boolean isInTheDictionary(
final ConcurrentHashMap<String, Dictionary> dictionaries,
final String word, final boolean ignoreCase) {
return isValidWord(dictionaries, word, ignoreCase);
}
public static boolean suggestionExceedsAutoCorrectionThreshold(
final SuggestedWordInfo suggestion, final String consideredWord,
final float autoCorrectionThreshold) {
......
......@@ -229,7 +229,7 @@ public final class Suggest {
// or if it's a 2+ characters non-word (i.e. it's not in the dictionary).
final boolean allowsToBeAutoCorrected = (null != whitelistedWord
&& !whitelistedWord.equals(consideredWord))
|| (consideredWord.length() > 1 && !AutoCorrection.isInTheDictionary(mDictionaries,
|| (consideredWord.length() > 1 && !AutoCorrection.isValidWord(mDictionaries,
consideredWord, wordComposer.isFirstCharCapitalized()));
final boolean hasAutoCorrection;
......
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