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

Commit 0c1af42c 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

am: fd0169ef

Change-Id: I65d0e9882f9e6a9df8e29e07a683e3ba340eb8e4
parents 6c947f46 fd0169ef
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);
    }