diff options
author | 2012-03-14 15:59:04 +0900 | |
---|---|---|
committer | 2012-03-14 15:59:04 +0900 | |
commit | bdf6d1b18b3cebdde5f39d10066ead34be161baf (patch) | |
tree | fb68db44f68765de5f71c4110af70736615eaffc /java/src/com/android/inputmethod/latin/SettingsValues.java | |
parent | eda7d8af60e28ff5f949a267ede8f1a553f8a067 (diff) | |
download | latinime-bdf6d1b18b3cebdde5f39d10066ead34be161baf.tar.gz latinime-bdf6d1b18b3cebdde5f39d10066ead34be161baf.tar.xz latinime-bdf6d1b18b3cebdde5f39d10066ead34be161baf.zip |
Remove a useless method
Change-Id: I208dd2e725e37c2fb3cd51fe48194679e5912f6b
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SettingsValues.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SettingsValues.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/SettingsValues.java b/java/src/com/android/inputmethod/latin/SettingsValues.java index df0e1696b..d88047c32 100644 --- a/java/src/com/android/inputmethod/latin/SettingsValues.java +++ b/java/src/com/android/inputmethod/latin/SettingsValues.java @@ -183,9 +183,9 @@ public class SettingsValues { KeySpecParser.getLabel(puncSpec))); } } - return SuggestedWords.getSuggestedWords(puncList, + return new SuggestedWords(puncList, false /* typedWordValid */, - false /* hasMinimalSuggestion */, + false /* hasAutoCorrectionCandidate */, false /* allowsToBeAutoCorrected */, true /* isPunctuationSuggestions */, false /* shouldBlockAutoCorrectionBySafetyNet */); @@ -205,9 +205,9 @@ public class SettingsValues { } } } - return SuggestedWords.getSuggestedWords(puncOutputTextList, + return new SuggestedWords(puncOutputTextList, false /* typedWordValid */, - false /* hasMinimalSuggestion */, + false /* hasAutoCorrectionCandidate */, false /* allowsToBeAutoCorrected */, true /* isPunctuationSuggestions */, false /* shouldBlockAutoCorrectionBySafetyNet */); |