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

Commit e512f850 authored by Yohei Yukawa's avatar Yohei Yukawa
Browse files

Remove a redundant method overload.

Bug: 22859862
Change-Id: I4e91b2d7f2da7716ae5a34125a29db5e1ad5a983
parent 5f8e731f
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -192,10 +192,6 @@ public class InputMethodSubtypeSwitchingController {
                            }
                        });

        public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList() {
            return getSortedInputMethodAndSubtypeList(false, false);
        }

        public List<ImeSubtypeListItem> getSortedInputMethodAndSubtypeList(
                boolean includeAuxiliarySubtypes, boolean isScreenLocked) {
            final ArrayList<ImeSubtypeListItem> imList =
@@ -532,7 +528,8 @@ public class InputMethodSubtypeSwitchingController {
    public void resetCircularListLocked(Context context) {
        mSubtypeList = new InputMethodAndSubtypeList(context, mSettings);
        mController = ControllerImpl.createFrom(mController,
                mSubtypeList.getSortedInputMethodAndSubtypeList());
                mSubtypeList.getSortedInputMethodAndSubtypeList(
                        false /* includeAuxiliarySubtypes */, false /* isScreenLocked */));
    }

    public ImeSubtypeListItem getNextInputMethodLocked(boolean onlyCurrentIme, InputMethodInfo imi,