Remove redundant API

Now InputMethodService has been migrated to WindowProviderService.
We don't need to override isUiContext anymore.

Bug: 193247900
Test: presubmit
Change-Id: I1cb0f04aca02d0d2c623995666ce5315125a0b4a
This commit is contained in:
Charles Chen
2022-01-14 18:51:57 +08:00
parent 30c8ab041f
commit 9c327699b8
2 changed files with 0 additions and 8 deletions

View File

@@ -19696,7 +19696,6 @@ package android.inputmethodservice {
public abstract class AbstractInputMethodService extends android.app.Service implements android.view.KeyEvent.Callback {
ctor public AbstractInputMethodService();
method public android.view.KeyEvent.DispatcherState getKeyDispatcherState();
method public final boolean isUiContext();
method public final android.os.IBinder onBind(android.content.Intent);
method public abstract android.inputmethodservice.AbstractInputMethodService.AbstractInputMethodImpl onCreateInputMethodInterface();
method public abstract android.inputmethodservice.AbstractInputMethodService.AbstractInputMethodSessionImpl onCreateInputMethodSessionInterface();

View File

@@ -300,13 +300,6 @@ public abstract class AbstractInputMethodService extends WindowProviderService
return false;
}
// TODO(b/149463653): remove it in T. We missed the API deadline in S.
/** @hide */
@Override
public final boolean isUiContext() {
return true;
}
/** @hide */
@Override
public final int getWindowType() {