[IL110] Remove an unused interface function

...and make a method private.

Bug: 8636060
Change-Id: If16f7e8ef3779f77a9db23fb7c54e7c23b043b86
main
Jean Chalard 2014-02-26 12:10:18 +09:00
parent 4423f3da00
commit bd1caac16a
2 changed files with 1 additions and 4 deletions

View File

@ -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;
}

View File

@ -22,7 +22,6 @@ import com.android.inputmethod.latin.SuggestedWords;
* An object that gives basic control of a suggestion strip and some info on it.
*/
public interface SuggestionStripViewAccessor {
public boolean hasSuggestionStripView();
public void showAddToDictionaryHint(final String word);
public boolean isShowingAddToDictionaryHint();
public void dismissAddToDictionaryHint();