Remove stuff that's not used any more (B3)
Change-Id: Ie86675ff2facd37430051bf129ddd930fb933dc9
This commit is contained in:
parent
0a59ac2ba8
commit
a0beebf711
1 changed files with 0 additions and 7 deletions
|
@ -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.
|
// Put a blue underline to a word in TextView which will be auto-corrected.
|
||||||
final InputConnection ic = getCurrentInputConnection();
|
final InputConnection ic = getCurrentInputConnection();
|
||||||
if (ic != null) {
|
if (ic != null) {
|
||||||
final boolean oldAutoCorrectionIndicator =
|
|
||||||
mComposingStateManager.isAutoCorrectionIndicatorOn();
|
|
||||||
if (mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator) {
|
if (mIsAutoCorrectionIndicatorOn != newAutoCorrectionIndicator) {
|
||||||
mComposingStateManager.setAutoCorrectionIndicatorOn(newAutoCorrectionIndicator);
|
|
||||||
if (DEBUG) {
|
|
||||||
Log.d(TAG, "Flip the indicator. " + oldAutoCorrectionIndicator
|
|
||||||
+ " -> " + newAutoCorrectionIndicator);
|
|
||||||
}
|
|
||||||
if (mWordComposer.isComposingWord()) {
|
if (mWordComposer.isComposingWord()) {
|
||||||
mIsAutoCorrectionIndicatorOn = newAutoCorrectionIndicator;
|
mIsAutoCorrectionIndicatorOn = newAutoCorrectionIndicator;
|
||||||
final CharSequence textWithUnderline =
|
final CharSequence textWithUnderline =
|
||||||
|
|
Loading…
Reference in a new issue