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

Commit 36fda2ba authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "[IL96] Inline a method"

parents 7593f935 86210c7d
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -1033,10 +1033,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
        }
    }

    private void setSuggestionStripShown(final boolean shown) {
        setSuggestionStripShownInternal(shown, /* needsInputViewShown */true);
    }

    private int getAdjustedBackingViewHeight() {
        final int currentHeight = mKeyPreviewBackingView.getHeight();
        if (currentHeight > 0) {
@@ -1347,7 +1343,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
            // the practice.
            mInputLogic.mConnection.setComposingText(textWithUnderline, 1);
        }
        setSuggestionStripShown(shouldShow);
        setSuggestionStripShownInternal(shouldShow, true /* needsInputViewShown */);
    }

    // TODO[IL]: Move this out of LatinIME.