diff options
author | 2012-03-08 01:13:06 -0800 | |
---|---|---|
committer | 2012-03-08 01:13:06 -0800 | |
commit | 4b656a3fef3f9952b923d6c7a251c50bc37a1f99 (patch) | |
tree | 9cd96c75fe4ad7c0aa2ca6f2fd941ebce359413f /java/src | |
parent | d8447ec353dd268695c598ac1ad06be735234f34 (diff) | |
parent | a0beebf7114557bf5e72c767f92b105704cbc1be (diff) | |
download | latinime-4b656a3fef3f9952b923d6c7a251c50bc37a1f99.tar.gz latinime-4b656a3fef3f9952b923d6c7a251c50bc37a1f99.tar.xz latinime-4b656a3fef3f9952b923d6c7a251c50bc37a1f99.zip |
Merge "Remove stuff that's not used any more (B3)"
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index dad97456c..fca6157cf 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1789,14 +1789,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar // Put a blue underline to a word in TextView which will be auto-corrected. final InputConnection ic = getCurrentInputConnection(); if (ic != null) { - final boolean oldAutoCorrectionIndicator = - mComposingStateManager.isAutoCorrectionIndicatorOn(); if (mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator) { - mComposingStateManager.setAutoCorrectionIndicatorOn(newAutoCorrectionIndicator); - if (DEBUG) { - Log.d(TAG, "Flip the indicator. " + oldAutoCorrectionIndicator - + " -> " + newAutoCorrectionIndicator); - } if (mWordComposer.isComposingWord()) { mIsAutoCorrectionIndicatorOn = newAutoCorrectionIndicator; final CharSequence textWithUnderline = |