diff options
author | 2014-11-07 08:49:24 +0000 | |
---|---|---|
committer | 2014-11-07 08:49:26 +0000 | |
commit | e0c2e5b2f731d612df5005c770ddd8cf47180e19 (patch) | |
tree | cbbeccf73eba48d6148bf551ad00f429ef3ca92d /java/src/com/android/inputmethod/latin/SuggestedWords.java | |
parent | 7286667754f516ae24e34e033f15e9f5b6fcd279 (diff) | |
parent | c3e211bd6be2f35cb7276319f6f4dfa29c315603 (diff) | |
download | latinime-e0c2e5b2f731d612df5005c770ddd8cf47180e19.tar.gz latinime-e0c2e5b2f731d612df5005c770ddd8cf47180e19.tar.xz latinime-e0c2e5b2f731d612df5005c770ddd8cf47180e19.zip |
Merge "Remove a deprecated constructor to SuggestedWords"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SuggestedWords.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SuggestedWords.java | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/java/src/com/android/inputmethod/latin/SuggestedWords.java b/java/src/com/android/inputmethod/latin/SuggestedWords.java index c51e20f21..bddeac495 100644 --- a/java/src/com/android/inputmethod/latin/SuggestedWords.java +++ b/java/src/com/android/inputmethod/latin/SuggestedWords.java @@ -73,21 +73,11 @@ public class SuggestedWords { final boolean willAutoCorrect, final boolean isObsoleteSuggestions, final int inputStyle) { - this(suggestedWordInfoList, rawSuggestions, typedWordValid, willAutoCorrect, - isObsoleteSuggestions, inputStyle, NOT_A_SEQUENCE_NUMBER); - } - - public SuggestedWords(final ArrayList<SuggestedWordInfo> suggestedWordInfoList, - final ArrayList<SuggestedWordInfo> rawSuggestions, - final boolean typedWordValid, - final boolean willAutoCorrect, - final boolean isObsoleteSuggestions, - final int inputStyle, - final int sequenceNumber) { this(suggestedWordInfoList, rawSuggestions, (suggestedWordInfoList.isEmpty() || isPrediction(inputStyle)) ? null : suggestedWordInfoList.get(INDEX_OF_TYPED_WORD).mWord, - typedWordValid, willAutoCorrect, isObsoleteSuggestions, inputStyle, sequenceNumber); + typedWordValid, willAutoCorrect, + isObsoleteSuggestions, inputStyle, NOT_A_SEQUENCE_NUMBER); } public SuggestedWords(final ArrayList<SuggestedWordInfo> suggestedWordInfoList, |