diff options
author | 2014-01-24 21:32:50 +0900 | |
---|---|---|
committer | 2014-01-28 15:47:04 +0900 | |
commit | 86210c7dc70c3fbb42dbf4ef8f699f0f7d5b9c2e (patch) | |
tree | 0d09ccf9cc9a6483a60efe5cd1b0535bd7a06370 /java/src | |
parent | 90916143b677bca41d89e137e4491cec5a469b85 (diff) | |
download | latinime-86210c7dc70c3fbb42dbf4ef8f699f0f7d5b9c2e.tar.gz latinime-86210c7dc70c3fbb42dbf4ef8f699f0f7d5b9c2e.tar.xz latinime-86210c7dc70c3fbb42dbf4ef8f699f0f7d5b9c2e.zip |
[IL96] Inline a method
Bug: 8636060
Change-Id: I517591c484dce74788398cf4a4db9a074d91a6c0
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 7defa4529..ba6dac6a2 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -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. |