Rename a terribly-named method for clarity (A11)
Change-Id: Id180000404dc6929d80f98c0e9cd2026230ad2d1main
parent
6b911c27a3
commit
9701b360d9
|
@ -38,7 +38,7 @@ public class AutoCorrection {
|
||||||
final CharSequence whitelistedWord) {
|
final CharSequence whitelistedWord) {
|
||||||
if (hasAutoCorrectionForWhitelistedWord(whitelistedWord)) {
|
if (hasAutoCorrectionForWhitelistedWord(whitelistedWord)) {
|
||||||
return whitelistedWord;
|
return whitelistedWord;
|
||||||
} else if (hasAutoCorrectionForConsideredWord(
|
} else if (shouldAutoCorrectToSelf(
|
||||||
dictionaries, wordComposer, suggestion, consideredWord)) {
|
dictionaries, wordComposer, suggestion, consideredWord)) {
|
||||||
return consideredWord;
|
return consideredWord;
|
||||||
} else if (hasAutoCorrectionForBinaryDictionary(wordComposer, suggestion,
|
} else if (hasAutoCorrectionForBinaryDictionary(wordComposer, suggestion,
|
||||||
|
@ -91,6 +91,7 @@ public class AutoCorrection {
|
||||||
return maxFreq;
|
return maxFreq;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Returns true if this is a whitelist entry, or it isn't in any dictionary.
|
||||||
public static boolean allowsToBeAutoCorrected(
|
public static boolean allowsToBeAutoCorrected(
|
||||||
final ConcurrentHashMap<String, Dictionary> dictionaries,
|
final ConcurrentHashMap<String, Dictionary> dictionaries,
|
||||||
final CharSequence word, final boolean ignoreCase) {
|
final CharSequence word, final boolean ignoreCase) {
|
||||||
|
@ -108,7 +109,7 @@ public class AutoCorrection {
|
||||||
return whiteListedWord != null;
|
return whiteListedWord != null;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static boolean hasAutoCorrectionForConsideredWord(
|
private static boolean shouldAutoCorrectToSelf(
|
||||||
final ConcurrentHashMap<String, Dictionary> dictionaries,
|
final ConcurrentHashMap<String, Dictionary> dictionaries,
|
||||||
final WordComposer wordComposer, final SuggestedWordInfo suggestion,
|
final WordComposer wordComposer, final SuggestedWordInfo suggestion,
|
||||||
final CharSequence consideredWord) {
|
final CharSequence consideredWord) {
|
||||||
|
|
Loading…
Reference in New Issue