diff options
author | 2012-03-12 19:17:21 -0700 | |
---|---|---|
committer | 2012-03-12 19:17:21 -0700 | |
commit | ae649580f4e03311ad3f1040892682164c24f766 (patch) | |
tree | 14d39e4125bd00a8f5e88d47c2b21d79c0eac9e3 /java/src/com/android/inputmethod/latin/SuggestedWords.java | |
parent | 8b4148e7575fb111c26a60118d2a925c32f2a251 (diff) | |
parent | ca0e04868891c461a3e6f30bf15d209d622c8349 (diff) | |
download | latinime-ae649580f4e03311ad3f1040892682164c24f766.tar.gz latinime-ae649580f4e03311ad3f1040892682164c24f766.tar.xz latinime-ae649580f4e03311ad3f1040892682164c24f766.zip |
Merge "Kill methods with side-effects"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SuggestedWords.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SuggestedWords.java | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java index 4a51e796d..a603fd8ec 100644 --- a/java/src/com/android/inputmethod/latin/SuggestedWords.java +++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java @@ -104,17 +104,6 @@ public class SuggestedWords { return this; } - public Builder addWord(CharSequence word) { - return addWord(word, null, false); - } - - public Builder addWord(CharSequence word, CharSequence debugString, - boolean isPreviousSuggestedWord) { - SuggestedWordInfo info = new SuggestedWordInfo(word, debugString, - isPreviousSuggestedWord); - return addWord(word, info); - } - /* package for tests */ Builder addWord(CharSequence word, SuggestedWordInfo suggestedWordInfo) { if (!TextUtils.isEmpty(suggestedWordInfo.mWord)) { |