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

Commit 36c1b379 authored by Jean Chalard's avatar Jean Chalard
Browse files

Remove a useless argument

Change-Id: I713433a3225193489fad5bdafcf302b529903116
parent 28e59b98
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -454,7 +454,7 @@ public class Suggest implements Dictionary.WordCallback {
        autoCorrectionAvailable &= !wordComposer.isMostlyCaps();
        builder.setTypedWordValid(!allowsToBeAutoCorrected).setHasMinimalSuggestion(
                autoCorrectionAvailable);
        if (Suggest.shouldBlockAutoCorrectionBySafetyNet(builder, this, mAutoCorrectionThreshold,
        if (Suggest.shouldBlockAutoCorrectionBySafetyNet(builder, mAutoCorrectionThreshold,
                !allowsToBeAutoCorrected)) {
            builder.setShouldBlockAutoCorrectionBySafetyNet();
        }
@@ -609,7 +609,7 @@ public class Suggest implements Dictionary.WordCallback {
    // TODO: Resolve the inconsistencies between the native auto correction algorithms and
    // this safety net
    public static boolean shouldBlockAutoCorrectionBySafetyNet(
            final SuggestedWords.Builder suggestedWordsBuilder, final Suggest suggest,
            final SuggestedWords.Builder suggestedWordsBuilder,
            final double autoCorrectionThreshold, final boolean isTypedWordValid) {
        // Safety net for auto correction.
        // Actually if we hit this safety net, it's actually a bug.