Remove a redundant method overload.
Bug: 22859862 Change-Id: I4e91b2d7f2da7716ae5a34125a29db5e1ad5a983
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user