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

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

Merge "Remove useless stuff (A1)"

parents f6862111 ec0fca8a
Loading
Loading
Loading
Loading
+2 −6
Original line number Diff line number Diff line
@@ -37,10 +37,6 @@ public class AutoCorrection {
        return null != mAutoCorrectionWord;
    }

    public CharSequence getAutoCorrectionWord() {
        return mAutoCorrectionWord;
    }

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