aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-02-18 01:56:57 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-02-18 01:56:57 -0800
commitdb10e81973b4207eebebc377403b67703631918a (patch)
tree0a78e90acffbff1b23163672ef7f8ece3f21a36d /java/src/com/android/inputmethod/latin/LatinIME.java
parentf2131ad92d8e155e28a798cb3b1848c20800462e (diff)
parent783dabb812d983a7c56dbb1071145c5e58da9ff1 (diff)
downloadlatinime-db10e81973b4207eebebc377403b67703631918a.tar.gz
latinime-db10e81973b4207eebebc377403b67703631918a.tar.xz
latinime-db10e81973b4207eebebc377403b67703631918a.zip
am 783dabb8: Merge "Cleanup."
* commit '783dabb812d983a7c56dbb1071145c5e58da9ff1': Cleanup.
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java8
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;
}