am 8f3e37a6: Merge "[IL87] Remove a call to clearSuggestionStrip"

* commit '8f3e37a63187f4fb2731f629472037a373796097':
  [IL87] Remove a call to clearSuggestionStrip
main
Jean Chalard 2014-01-27 03:22:01 -08:00 committed by Android Git Automerger
commit 925f8fcf88
1 changed files with 2 additions and 6 deletions

View File

@ -1457,12 +1457,8 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
// TODO[IL]: Define a clean interface for this
public void showSuggestionStrip(final SuggestedWords suggestedWords) {
if (suggestedWords.isEmpty()) {
clearSuggestionStrip();
return;
}
showSuggestionStripWithTypedWord(suggestedWords,
suggestedWords.getWord(SuggestedWords.INDEX_OF_TYPED_WORD));
showSuggestionStripWithTypedWord(suggestedWords, suggestedWords.isEmpty() ? null
: suggestedWords.getWord(SuggestedWords.INDEX_OF_TYPED_WORD));
}
// Called from {@link SuggestionStripView} through the {@link SuggestionStripView#Listener}