Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 686e0345 authored by Yohei Yukawa's avatar Yohei Yukawa Committed by Android (Google) Code Review
Browse files

Merge "Mechanical merge of nested if statements."

parents f849e35f ac8bdd20
Loading
Loading
Loading
Loading
+3 −9
Original line number Diff line number Diff line
@@ -1456,16 +1456,10 @@ public class InputMethodService extends AbstractInputMethodService {
        final int previousImeWindowStatus =
                (mWindowVisible ? IME_ACTIVE : 0) | (isInputViewShown() ? IME_VISIBLE : 0);
        mWindowVisible = true;
        if (!mShowInputRequested) {
            if (mInputStarted) {
                if (showInput) {
        if (!mShowInputRequested && mInputStarted && showInput) {
            doShowInput = true;
            mShowInputRequested = true;
        }
            }
        } else {
            showInput = true;
        }

        if (DEBUG) Log.v(TAG, "showWindow: updating UI");
        initialize();