diff options
author | 2012-06-28 19:39:34 +0900 | |
---|---|---|
committer | 2012-06-29 19:47:00 +0900 | |
commit | 1842fbba93ed810468d24818f1350845d7d06a3c (patch) | |
tree | 996c9ad94f3ba5c2716768cdfa1782fff47ce846 /java/src | |
parent | 105069a15ff0d2ca9efdc7125a46d29b69c44e9a (diff) | |
download | latinime-1842fbba93ed810468d24818f1350845d7d06a3c.tar.gz latinime-1842fbba93ed810468d24818f1350845d7d06a3c.tar.xz latinime-1842fbba93ed810468d24818f1350845d7d06a3c.zip |
Remove old debug code that has been long broken (A34)
Change-Id: I9b5a0e34529724984aad1e2bf99b3e00f8ed0dd7
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java index e86390b11..f087790f6 100644 --- a/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java +++ b/java/src/com/android/inputmethod/latin/suggestions/SuggestionsView.java @@ -336,9 +336,8 @@ public class SuggestionsView extends RelativeLayout implements OnClickListener, if (LatinImeLogger.sDBG && suggestedWords.size() > 1) { // If we auto-correct, then the autocorrection is in slot 0 and the typed word // is in slot 1. - if (index == mCenterSuggestionIndex && suggestedWords.mHasAutoCorrectionCandidate - && Suggest.shouldBlockAutoCorrectionBySafetyNet( - suggestedWords.getWord(1).toString(), suggestedWords.getWord(0))) { + if (index == mCenterSuggestionIndex && Suggest.shouldBlockAutoCorrectionBySafetyNet( + suggestedWords.getWord(1).toString(), suggestedWords.getWord(0))) { return 0xFFFF0000; } } |