diff options
author | 2012-03-04 19:35:11 -0800 | |
---|---|---|
committer | 2012-03-04 19:35:11 -0800 | |
commit | 428178aca6abc87bd09b8f6b84a589a9dd13f87d (patch) | |
tree | 08ed533a83be239f3963daddcc5f2b6184209e70 /java/src | |
parent | 4ab5486bf2dbaa5e474209317dcbd23669964a9b (diff) | |
parent | 4e112d07821d34c1dedd21b086817be9fce2fd47 (diff) | |
download | latinime-428178aca6abc87bd09b8f6b84a589a9dd13f87d.tar.gz latinime-428178aca6abc87bd09b8f6b84a589a9dd13f87d.tar.xz latinime-428178aca6abc87bd09b8f6b84a589a9dd13f87d.zip |
Merge "Replace a useless computation with a constant"
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 2cdb0df15..0f9b983a3 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -980,7 +980,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar .setHasMinimalSuggestion(false); // When in fullscreen mode, show completions generated by the application final SuggestedWords words = builder.build(); - final boolean isAutoCorrection = Utils.willAutoCorrect(words); + final boolean isAutoCorrection = false; setSuggestions(words, isAutoCorrection); setAutoCorrectionIndicator(isAutoCorrection); // TODO: is this the right thing to do? What should we auto-correct to in |