diff options
author | 2015-03-20 18:17:44 +0000 | |
---|---|---|
committer | 2015-03-20 18:17:44 +0000 | |
commit | 92d0dd0b837ddcd8179cddcf2fc202665d5357a3 (patch) | |
tree | a10b5ac29d52fbac7293cae1eb77f272bb499940 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | a7cf04a3947f68b735705d3f65b9e68229a4bb19 (diff) | |
parent | fe716f0f73ee551ce42b523983f92efccce79dc8 (diff) | |
download | latinime-92d0dd0b837ddcd8179cddcf2fc202665d5357a3.tar.gz latinime-92d0dd0b837ddcd8179cddcf2fc202665d5357a3.tar.xz latinime-92d0dd0b837ddcd8179cddcf2fc202665d5357a3.zip |
am fe716f0f: Resolve some InputLogic todo comments.
* commit 'fe716f0f73ee551ce42b523983f92efccce79dc8':
Resolve some InputLogic todo comments.
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, 1 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 790cd6910..330be377b 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1386,7 +1386,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen @Override public void onUpdateBatchInput(final InputPointers batchPointers) { - mInputLogic.onUpdateBatchInput(mSettings.getCurrent(), batchPointers, mKeyboardSwitcher); + mInputLogic.onUpdateBatchInput(batchPointers); } @Override @@ -1541,7 +1541,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen setSuggestedWords(neutralSuggestions); } - // TODO: Make this private // Outside LatinIME, only used by the {@link InputTestsBase} test suite. @UsedForTesting void loadKeyboard() { @@ -1772,7 +1771,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen dialog.show(); } - // TODO: can this be removed somehow without breaking the tests? @UsedForTesting SuggestedWords getSuggestedWordsForTest() { // You may not use this method for anything else than debug |