diff options
author | 2011-02-15 17:13:52 +0900 | |
---|---|---|
committer | 2011-02-15 17:15:13 +0900 | |
commit | a7b2ac26ee2b9aef6f8cd95849c7d8edbff5082b (patch) | |
tree | de26fab35a0599762c207ee0de932d15bc1c883b /java | |
parent | 0e71cb1fff9188841aca207533434ae147a278ac (diff) | |
download | latinime-a7b2ac26ee2b9aef6f8cd95849c7d8edbff5082b.tar.gz latinime-a7b2ac26ee2b9aef6f8cd95849c7d8edbff5082b.tar.xz latinime-a7b2ac26ee2b9aef6f8cd95849c7d8edbff5082b.zip |
Remove a useless flag.
This has become useless when LatinIME stopped being a
SharedPreferenceListener.
Change-Id: I708ec3c3a299ead18548c85b435b45558c984e8d
Diffstat (limited to 'java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index fcd9229ec..cb1ff41dd 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -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 |