Remove useless stuff (A1)

Remove an unused method and avoid doing a useless computation

Change-Id: I29593c2e93f15857249b35bdd72ca28045056302
This commit is contained in:
Jean Chalard 2012-03-08 20:25:07 +09:00
parent 7d6d98ecc5
commit ec0fca8a8b

View file

@ -37,10 +37,6 @@ public class AutoCorrection {
return null != mAutoCorrectionWord; return null != mAutoCorrectionWord;
} }
public CharSequence getAutoCorrectionWord() {
return mAutoCorrectionWord;
}
public double getNormalizedScore() { public double getNormalizedScore() {
return mNormalizedScore; return mNormalizedScore;
} }
@ -106,8 +102,8 @@ public class AutoCorrection {
WordComposer wordComposer, ArrayList<CharSequence> suggestions, CharSequence typedWord, WordComposer wordComposer, ArrayList<CharSequence> suggestions, CharSequence typedWord,
int correctionMode) { int correctionMode) {
if (TextUtils.isEmpty(typedWord)) return false; if (TextUtils.isEmpty(typedWord)) return false;
boolean allowsAutoCorrect = allowsToBeAutoCorrected(dictionaries, typedWord, false); return wordComposer.size() > 1 && suggestions.size() > 0
return wordComposer.size() > 1 && suggestions.size() > 0 && !allowsAutoCorrect && !allowsToBeAutoCorrected(dictionaries, typedWord, false)
&& (correctionMode == Suggest.CORRECTION_FULL && (correctionMode == Suggest.CORRECTION_FULL
|| correctionMode == Suggest.CORRECTION_FULL_BIGRAM); || correctionMode == Suggest.CORRECTION_FULL_BIGRAM);
} }