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

Commit ba910dfa authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Fix not to show a log with empty default ime" into lmp-mr1-dev

parents 0c189ca5 5baaaac7
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -774,7 +774,11 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
        if (defIm == null && mMethodList.size() > 0) {
            defIm = InputMethodUtils.getMostApplicableDefaultIME(
                    mSettings.getEnabledInputMethodListLocked());
            Slog.i(TAG, "No default found, using " + defIm.getId());
            if (defIm != null) {
                Slog.i(TAG, "Default found, using " + defIm.getId());
            } else {
                Slog.i(TAG, "No default found");
            }
        }
        if (defIm != null) {
            setSelectedInputMethodAndSubtypeLocked(defIm, NOT_A_SUBTYPE_ID, false);