aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-03-07 15:32:42 +0900
committerJean Chalard <jchalard@google.com>2012-03-07 15:32:55 +0900
commita0beebf7114557bf5e72c767f92b105704cbc1be (patch)
tree74e8f8b1d3945245dbb9c6ef612650370e3f36dd /java/src
parent0a59ac2ba88ac1f99151d9336136bc6fe7d416c0 (diff)
downloadlatinime-a0beebf7114557bf5e72c767f92b105704cbc1be.tar.gz
latinime-a0beebf7114557bf5e72c767f92b105704cbc1be.tar.xz
latinime-a0beebf7114557bf5e72c767f92b105704cbc1be.zip
Remove stuff that's not used any more (B3)
Change-Id: Ie86675ff2facd37430051bf129ddd930fb933dc9
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java7
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 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 =