Call existing method on the binding controller

Bug: 213183367
Test: make
Change-Id: Id89536e28f8a1180e09f3659b909e74102444d1b
This commit is contained in:
Nikolas Havrikov
2022-01-04 18:19:31 +01:00
parent 96f8c9fd10
commit e7460863c7
2 changed files with 2 additions and 2 deletions

View File

@@ -515,7 +515,7 @@ final class InputMethodBindingController {
if (DEBUG) {
Slog.d(TAG, "Cannot show input: no IME bound. Rebinding.");
}
bindCurrentMethodLocked();
bindCurrentMethod();
return;
}

View File

@@ -2411,7 +2411,7 @@ public class InputMethodManagerService extends IInputMethodManager.Stub
if (DEBUG) {
Slog.d(TAG, "Avoiding IME startup and unbinding current input method.");
}
mBindingController.unbindCurrentMethodLocked();
mBindingController.unbindCurrentMethod();
return InputBindResult.NO_EDITOR;
}