Loading core/java/android/view/inputmethod/InputMethodManager.java +1 −5 Original line number Diff line number Diff line Loading @@ -806,20 +806,16 @@ public final class InputMethodManager { * Disconnect any existing input connection, clearing the served view. */ void finishInputLocked() { mCurRootView = null; mNextServedView = null; if (mServedView != null) { if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); if (mCurrentTextBoxAttribute != null) { try { mService.finishInput(mClient); } catch (RemoteException e) { } } notifyInputConnectionFinished(); mServedView = null; mCompletions = null; mServedConnecting = false; Loading Loading
core/java/android/view/inputmethod/InputMethodManager.java +1 −5 Original line number Diff line number Diff line Loading @@ -806,20 +806,16 @@ public final class InputMethodManager { * Disconnect any existing input connection, clearing the served view. */ void finishInputLocked() { mCurRootView = null; mNextServedView = null; if (mServedView != null) { if (DEBUG) Log.v(TAG, "FINISH INPUT: " + mServedView); if (mCurrentTextBoxAttribute != null) { try { mService.finishInput(mClient); } catch (RemoteException e) { } } notifyInputConnectionFinished(); mServedView = null; mCompletions = null; mServedConnecting = false; Loading