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

Commit d4471258 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Disable optimize startInput in IMMS" into pi-dev

parents 13c78d15 1c042c5d
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -266,9 +266,9 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
        @GuardedBy("LOCK")
        private boolean mValue;

        public DebugFlag(String key) {
        public DebugFlag(String key, boolean defaultValue) {
            mKey = key;
            refresh();
            mValue = SystemProperties.getBoolean(key, defaultValue);
        }

        void refresh() {
@@ -290,7 +290,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
     */
    private static final class DebugFlags {
        static final DebugFlag FLAG_OPTIMIZE_START_INPUT =
                new DebugFlag("debug.optimize_startinput");
                new DebugFlag("debug.optimize_startinput", false);
    }