Remove a useless flag.
This has become useless when LatinIME stopped being a SharedPreferenceListener. Change-Id: I708ec3c3a299ead18548c85b435b45558c984e8dmain
parent
0e71cb1fff
commit
a7b2ac26ee
|
@ -185,7 +185,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
|
||||
// Keeps track of most recently inserted text (multi-character key) for reverting
|
||||
private CharSequence mEnteredText;
|
||||
private boolean mRefreshKeyboardRequired;
|
||||
|
||||
private final ArrayList<WordAlternatives> mWordHistory = new ArrayList<WordAlternatives>();
|
||||
|
||||
|
@ -521,11 +520,6 @@ public class LatinIME extends InputMethodService implements KeyboardActionListen
|
|||
|
||||
mSubtypeSwitcher.updateParametersOnStartInputView();
|
||||
|
||||
if (mRefreshKeyboardRequired) {
|
||||
mRefreshKeyboardRequired = false;
|
||||
onRefreshKeyboard();
|
||||
}
|
||||
|
||||
TextEntryState.newSession(this);
|
||||
|
||||
// Most such things we decide below in initializeInputAttributesAndGetMode, but we need to
|
||||
|
|
Loading…
Reference in New Issue