From a0beebf7114557bf5e72c767f92b105704cbc1be Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Wed, 7 Mar 2012 15:32:42 +0900 Subject: [PATCH] Remove stuff that's not used any more (B3) Change-Id: Ie86675ff2facd37430051bf129ddd930fb933dc9 --- java/src/com/android/inputmethod/latin/LatinIME.java | 7 ------- 1 file changed, 7 deletions(-) diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index d17c83313..fc242a0cb 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1738,14 +1738,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 =