diff options
author | 2014-02-18 09:54:32 +0000 | |
---|---|---|
committer | 2014-02-18 09:54:33 +0000 | |
commit | 783dabb812d983a7c56dbb1071145c5e58da9ff1 (patch) | |
tree | 00813ef8bb786a72819d336e130e9ad0f5bc17da /java/src/com/android/inputmethod/latin/LatinIME.java | |
parent | 266c8c5b1dbccbc4252fb79f042a4a5660c62763 (diff) | |
parent | 63be066544f19928d6a29c58c028cce7c95fa457 (diff) | |
download | latinime-783dabb812d983a7c56dbb1071145c5e58da9ff1.tar.gz latinime-783dabb812d983a7c56dbb1071145c5e58da9ff1.tar.xz latinime-783dabb812d983a7c56dbb1071145c5e58da9ff1.zip |
Merge "Cleanup."
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index efc37c189..75ba24d75 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1307,12 +1307,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen // Nothing to do so far. } - // TODO: remove this, read this directly from mInputLogic or something in the tests - @UsedForTesting - public boolean isShowingPunctuationList() { - return mInputLogic.isShowingPunctuationList(mSettings.getCurrent()); - } - // TODO[IL]: Define a clear interface for this public boolean isSuggestionStripVisible() { if (!hasSuggestionStripView()) { @@ -1690,7 +1684,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen // TODO: can this be removed somehow without breaking the tests? @UsedForTesting - /* package for test */ SuggestedWords getSuggestedWords() { + /* package for test */ SuggestedWords getSuggestedWordsForTest() { // You may not use this method for anything else than debug return DEBUG ? mInputLogic.mSuggestedWords : null; } |