aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/latin/LatinIME.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2014-02-26 01:38:48 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2014-02-26 01:38:48 -0800
commit8c55e28c0ec86c9a99f097977276d783b12998ec (patch)
tree3c2fe3720cde106b6549669df81132da4db29292 /java/src/com/android/inputmethod/latin/LatinIME.java
parent10b352e01b95edd4be4302bb13d83e02a956e927 (diff)
parent7e70e9dc49785c8ac1a3bdbd6cd51d7943e7eec0 (diff)
downloadlatinime-8c55e28c0ec86c9a99f097977276d783b12998ec.tar.gz
latinime-8c55e28c0ec86c9a99f097977276d783b12998ec.tar.xz
latinime-8c55e28c0ec86c9a99f097977276d783b12998ec.zip
am 7e70e9dc: Merge "[IL110] Remove an unused interface function"
* commit '7e70e9dc49785c8ac1a3bdbd6cd51d7943e7eec0': [IL110] Remove an unused interface function
Diffstat (limited to 'java/src/com/android/inputmethod/latin/LatinIME.java')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java4
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 1179bc3b0..8ab1bb6a1 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1316,8 +1316,7 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// Nothing to do so far.
}
- // TODO[IL]: Define a clear interface for this
- public boolean isSuggestionStripVisible() {
+ private boolean isSuggestionStripVisible() {
if (!hasSuggestionStripView()) {
return false;
}
@@ -1341,7 +1340,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
return currentSettings.isSuggestionsRequested();
}
- @Override
public boolean hasSuggestionStripView() {
return null != mSuggestionStripView;
}