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

Commit fab089da authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix restoring debug mode in InputTestBase

Change-Id: I71f01b86c0e8b1e56d39d85795dc0a844cc6285f
parent 04df2bca
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -95,7 +95,7 @@ public class InputTestsBase extends ServiceTestCase<LatinIME> {
        final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(mLatinIME);
        final boolean previousDebugSetting = prefs.getBoolean(PREF_DEBUG_MODE, false);
        final SharedPreferences.Editor editor = prefs.edit();
        editor.putBoolean(PREF_DEBUG_MODE, true);
        editor.putBoolean(PREF_DEBUG_MODE, mode);
        editor.commit();
        return previousDebugSetting;
    }