diff options
author | 2012-01-26 11:40:16 +0900 | |
---|---|---|
committer | 2012-01-26 11:40:16 +0900 | |
commit | fda847a870829f1491cbd5325f9c985213081149 (patch) | |
tree | 0978a462a46e1b298ea462c3ef33a7dc3dccb730 /java/src | |
parent | 61b31a646ea5c65f55891354dfd0485cbbcbc997 (diff) | |
download | latinime-fda847a870829f1491cbd5325f9c985213081149.tar.gz latinime-fda847a870829f1491cbd5325f9c985213081149.tar.xz latinime-fda847a870829f1491cbd5325f9c985213081149.zip |
Small cleanup
All calls to this method are done with the same parameter,
and it's really hard to understand if we call upon this
member inside.
Change-Id: I787664bb59053ab0fe666ed812fb12b2b9090918
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index d59497d6a..03c0878f9 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1622,7 +1622,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar private CharSequence getTextWithUnderline(final CharSequence text) { return mComposingStateManager.isAutoCorrectionIndicatorOn() ? SuggestionSpanUtils.getTextWithAutoCorrectionIndicatorUnderline(this, text) - : mWordComposer.getTypedWord(); + : text; } private void handleClose() { |