diff options
author | 2012-03-13 00:26:06 -0700 | |
---|---|---|
committer | 2012-03-13 00:26:06 -0700 | |
commit | 95fcb0cce939fa730d90ed975f65bfaa1ffbfbcb (patch) | |
tree | 2e4c1e74f453eb168ee25a6768481a6eb81481b6 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | dabf96896ef4c304c6dad36b307a2a458a58209d (diff) | |
parent | d0d4074392a844602d068b17733fe16b1af94d86 (diff) | |
download | latinime-95fcb0cce939fa730d90ed975f65bfaa1ffbfbcb.tar.gz latinime-95fcb0cce939fa730d90ed975f65bfaa1ffbfbcb.tar.xz latinime-95fcb0cce939fa730d90ed975f65bfaa1ffbfbcb.zip |
Merge "Remove a useless parameter."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 22d1a4025..dc5bd2efc 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -922,11 +922,11 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar return; } - final List<CharSequence> applicationSuggestedWords = + final List<SuggestedWords.SuggestedWordInfo> applicationSuggestedWords = SuggestedWords.Builder.getFromApplicationSpecifiedCompletions( applicationSpecifiedCompletions); SuggestedWords.Builder builder = new SuggestedWords.Builder() - .addWords(applicationSuggestedWords, null) + .addWords(applicationSuggestedWords) .setTypedWordValid(false) .setHasMinimalSuggestion(false); // When in fullscreen mode, show completions generated by the application |