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

Commit 8b83a729 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

Fix a bug in InputMethodSubtype constructor

bug: 5249480

Change-Id: I707e45cc0606dae7824c478ab586fc24d3f417f8
parent 94d86dae
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ public final class InputMethodSubtype implements Parcelable {
     */
    public InputMethodSubtype(int nameId, int iconId, String locale, String mode, String extraValue,
            boolean isAuxiliary) {
        this(nameId, iconId, locale, mode, extraValue, false, false);
        this(nameId, iconId, locale, mode, extraValue, isAuxiliary, false);
    }

    /**