aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-01-29 19:50:21 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-01-29 19:50:21 -0800
commit60e0aef93730033a2d61b99297e53d1dc98941cf (patch)
treec2f2f40e00985b2360aec5004214cf2c03912acc /java/src/com/android/inputmethod/latin/LatinIME.java
parent28ff11cba212507bf9d6045639d62c7f69053ea9 (diff)
parent0c186c31d2dcb69a5d59afe0107878544a706c7b (diff)
downloadlatinime-60e0aef93730033a2d61b99297e53d1dc98941cf.tar.gz
latinime-60e0aef93730033a2d61b99297e53d1dc98941cf.tar.xz
latinime-60e0aef93730033a2d61b99297e53d1dc98941cf.zip
am 0c186c31: Merge "[IL106] Inline a now useless method."
* commit '0c186c31d2dcb69a5d59afe0107878544a706c7b': [IL106] Inline a now useless method.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java12
1 files changed, 0 insertions, 12 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index 643e86e1b..1de965ea9 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1519,18 +1519,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
}
}
- public void unsetIsAutoCorrectionIndicatorOnAndCallShowSuggestionStrip(
- final SuggestedWords suggestedWords) {
- // Note that it's very important here that suggestedWords.mWillAutoCorrect is false.
- // We never want to auto-correct on a resumed suggestion. Please refer to the three places
- // above in restartSuggestionsOnWordTouchedByCursor() where suggestedWords is affected.
- // We also need to unset mIsAutoCorrectionIndicatorOn to avoid showSuggestionStrip touching
- // the text to adapt it.
- // TODO: remove mIsAutoCorrectionIndicatorOn (see comment on definition)
- mInputLogic.mIsAutoCorrectionIndicatorOn = false;
- mHandler.showSuggestionStrip(suggestedWords);
- }
-
// TODO: Make this private
// Outside LatinIME, only used by the {@link InputTestsBase} test suite.
@UsedForTesting