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

Commit fd0169ef authored by Tarandeep Singh's avatar Tarandeep Singh Committed by android-build-merger
Browse files

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

am: d4471258

Change-Id: I57195512dfba25d2d2133055ce2069fd5720fbe0
parents 7cc9d8a4 d4471258
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);
    }