diff options
author | 2012-03-14 18:12:12 +0900 | |
---|---|---|
committer | 2012-03-14 18:12:12 +0900 | |
commit | f985efe39c98d03125884b140d7c64bb28914018 (patch) | |
tree | 6afaca39eb1a6328314c17984e71527218af5af4 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | bdf6d1b18b3cebdde5f39d10066ead34be161baf (diff) | |
download | latinime-f985efe39c98d03125884b140d7c64bb28914018.tar.gz latinime-f985efe39c98d03125884b140d7c64bb28914018.tar.xz latinime-f985efe39c98d03125884b140d7c64bb28914018.zip |
Remove a useless parameter
Change-Id: I03005240238fb004c20b2df0d836796e2e8b307f
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 6570f7a2f..9f5931de9 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -931,8 +931,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar false /* typedWordValid */, false /* hasAutoCorrectionCandidate */, false /* allowsToBeAutoCorrected */, - false /* isPunctuationSuggestions */, - false /* shouldBlockAutoCorrectionBySafetyNet */); + false /* isPunctuationSuggestions */); // When in fullscreen mode, show completions generated by the application final boolean isAutoCorrection = false; setSuggestions(suggestedWords, isAutoCorrection); @@ -1794,8 +1793,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar false /* typedWordValid */, false /* hasAutoCorrectionCandidate */, false /* allowsToBeAutoCorrected */, - false /* isPunctuationSuggestions */, - false /* shouldBlockAutoCorrectionBySafetyNet */); + false /* isPunctuationSuggestions */); showSuggestions(obsoleteSuggestedWords, typedWord); } } |