Merge "Remove useless tests (B5)"
This commit is contained in:
commit
de19ab878d
1 changed files with 5 additions and 10 deletions
|
@ -277,11 +277,9 @@ public class Suggest implements Dictionary.WordCallback {
|
||||||
final String consideredWord = mTrailingSingleQuotesCount > 0
|
final String consideredWord = mTrailingSingleQuotesCount > 0
|
||||||
? typedWord.substring(0, typedWord.length() - mTrailingSingleQuotesCount)
|
? typedWord.substring(0, typedWord.length() - mTrailingSingleQuotesCount)
|
||||||
: typedWord;
|
: typedWord;
|
||||||
if (typedWord != null) {
|
// Treating USER_TYPED as UNIGRAM suggestion for logging now.
|
||||||
// Treating USER_TYPED as UNIGRAM suggestion for logging now.
|
LatinImeLogger.onAddSuggestedWord(typedWord, Suggest.DIC_USER_TYPED,
|
||||||
LatinImeLogger.onAddSuggestedWord(typedWord, Suggest.DIC_USER_TYPED,
|
Dictionary.UNIGRAM);
|
||||||
Dictionary.UNIGRAM);
|
|
||||||
}
|
|
||||||
mConsideredWord = consideredWord;
|
mConsideredWord = consideredWord;
|
||||||
|
|
||||||
if (wordComposer.size() <= 1 && (correctionMode == CORRECTION_FULL_BIGRAM)) {
|
if (wordComposer.size() <= 1 && (correctionMode == CORRECTION_FULL_BIGRAM)) {
|
||||||
|
@ -340,8 +338,7 @@ public class Suggest implements Dictionary.WordCallback {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
final String consideredWordString =
|
final String consideredWordString = consideredWord.toString();
|
||||||
consideredWord == null ? null : consideredWord.toString();
|
|
||||||
|
|
||||||
CharSequence whitelistedWord = capitalizeWord(mIsAllUpperCase, mIsFirstCharCapitalized,
|
CharSequence whitelistedWord = capitalizeWord(mIsAllUpperCase, mIsFirstCharCapitalized,
|
||||||
mWhiteListDictionary.getWhitelistedWord(consideredWordString));
|
mWhiteListDictionary.getWhitelistedWord(consideredWordString));
|
||||||
|
@ -369,9 +366,7 @@ public class Suggest implements Dictionary.WordCallback {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (typedWord != null) {
|
mSuggestions.add(0, typedWord.toString());
|
||||||
mSuggestions.add(0, typedWord.toString());
|
|
||||||
}
|
|
||||||
StringUtils.removeDupes(mSuggestions);
|
StringUtils.removeDupes(mSuggestions);
|
||||||
|
|
||||||
if (DBG) {
|
if (DBG) {
|
||||||
|
|
Loading…
Reference in a new issue