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

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

Merge "Remove unused InputMethodSettings#{get,put}Boolean()" into main

parents 1331227d 737083eb
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -255,14 +255,6 @@ final class InputMethodUtils {
            return SecureSettingsWrapper.getInt(key, defaultValue, mCurrentUserId);
        }

        private void putBoolean(String key, boolean value) {
            SecureSettingsWrapper.putBoolean(key, value, mCurrentUserId);
        }

        private boolean getBoolean(String key, boolean defaultValue) {
            return SecureSettingsWrapper.getBoolean(key, defaultValue, mCurrentUserId);
        }

        ArrayList<InputMethodInfo> getEnabledInputMethodListLocked() {
            return getEnabledInputMethodListWithFilterLocked(null /* matchingCondition */);
        }