diff options
author | 2015-03-20 10:43:38 -0700 | |
---|---|---|
committer | 2015-03-20 10:49:15 -0700 | |
commit | fe716f0f73ee551ce42b523983f92efccce79dc8 (patch) | |
tree | 18600f6a86f470052fa446fcb9754e05a0151580 /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 5cf457c976d69e05e3d93df0363f7a411b131bf9 (diff) | |
download | latinime-fe716f0f73ee551ce42b523983f92efccce79dc8.tar.gz latinime-fe716f0f73ee551ce42b523983f92efccce79dc8.tar.xz latinime-fe716f0f73ee551ce42b523983f92efccce79dc8.zip |
Resolve some InputLogic todo comments.
Change-Id: Ic3d7d11ad90cc09edf62f48aa5362e71d692f7dd
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 |