diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml
index 2d508e6151cb3..6c9d79959dbbb 100644
--- a/core/res/res/values/config.xml
+++ b/core/res/res/values/config.xml
@@ -2963,9 +2963,6 @@
- * This defaults to {@link InputMethodBindingController#IME_CONNECTION_BIND_FLAGS} unless - * config_killableInputMethods is enabled, in which case this takes the value of - * {@link InputMethodBindingController#IME_CONNECTION_LOW_PRIORITY_BIND_FLAGS}. - */ - private final int mImeConnectionBindFlags; - InputMethodBindingController(@NonNull InputMethodManagerService service) { mService = service; mContext = mService.mContext; @@ -127,17 +110,6 @@ final class InputMethodBindingController { mIWindowManager = mService.mIWindowManager; mWindowManagerInternal = mService.mWindowManagerInternal; mRes = mService.mRes; - - // If configured, use low priority flags to make the IME killable by the lowmemorykiller - final boolean lowerIMEPriority = mRes.getBoolean( - com.android.internal.R.bool.config_killableInputMethods); - - if (lowerIMEPriority) { - mImeConnectionBindFlags = - InputMethodBindingController.IME_CONNECTION_LOW_PRIORITY_BIND_FLAGS; - } else { - mImeConnectionBindFlags = InputMethodBindingController.IME_CONNECTION_BIND_FLAGS; - } } /** @@ -500,8 +472,7 @@ final class InputMethodBindingController { @GuardedBy("ImfLock.class") private boolean bindCurrentInputMethodServiceMainConnection() { - mHasConnection = bindCurrentInputMethodService(mMainConnection, - mImeConnectionBindFlags); + mHasConnection = bindCurrentInputMethodService(mMainConnection, IME_CONNECTION_BIND_FLAGS); return mHasConnection; }