Loading services/core/java/com/android/server/inputmethod/InputMethodBindingController.java +2 −2 Original line number Diff line number Diff line Loading @@ -469,11 +469,11 @@ final class InputMethodBindingController { @GuardedBy("ImfLock.class") private boolean bindCurrentInputMethodService(ServiceConnection conn, int flags) { if (getCurIntent() == null || conn == null) { if (mCurIntent == null || conn == null) { Slog.e(TAG, "--- bind failed: service = " + mCurIntent + ", conn = " + conn); return false; } return mContext.bindServiceAsUser(getCurIntent(), conn, flags, return mContext.bindServiceAsUser(mCurIntent, conn, flags, new UserHandle(mSettings.getCurrentUserId())); } Loading Loading
services/core/java/com/android/server/inputmethod/InputMethodBindingController.java +2 −2 Original line number Diff line number Diff line Loading @@ -469,11 +469,11 @@ final class InputMethodBindingController { @GuardedBy("ImfLock.class") private boolean bindCurrentInputMethodService(ServiceConnection conn, int flags) { if (getCurIntent() == null || conn == null) { if (mCurIntent == null || conn == null) { Slog.e(TAG, "--- bind failed: service = " + mCurIntent + ", conn = " + conn); return false; } return mContext.bindServiceAsUser(getCurIntent(), conn, flags, return mContext.bindServiceAsUser(mCurIntent, conn, flags, new UserHandle(mSettings.getCurrentUserId())); } Loading