am 07f7536b: [IL32] Remove a useless variable
* commit '07f7536b04142c00188bc52e96922904dd07e763': [IL32] Remove a useless variablemain
commit
63af3481d4
|
@ -193,7 +193,6 @@ public final class InputLogic {
|
||||||
}
|
}
|
||||||
mLastKeyTime = when;
|
mLastKeyTime = when;
|
||||||
mConnection.beginBatchEdit();
|
mConnection.beginBatchEdit();
|
||||||
final KeyboardSwitcher switcher = keyboardSwitcher;
|
|
||||||
// The space state depends only on the last character pressed and its own previous
|
// The space state depends only on the last character pressed and its own previous
|
||||||
// state. Here, we revert the space state to neutral if the key is actually modifying
|
// state. Here, we revert the space state to neutral if the key is actually modifying
|
||||||
// the input contents (any non-shift key), which is what we should do for
|
// the input contents (any non-shift key), which is what we should do for
|
||||||
|
@ -218,7 +217,7 @@ public final class InputLogic {
|
||||||
case Constants.CODE_SHIFT:
|
case Constants.CODE_SHIFT:
|
||||||
// Note: Calling back to the keyboard on Shift key is handled in
|
// Note: Calling back to the keyboard on Shift key is handled in
|
||||||
// {@link #onPressKey(int,int,boolean)} and {@link #onReleaseKey(int,boolean)}.
|
// {@link #onPressKey(int,int,boolean)} and {@link #onReleaseKey(int,boolean)}.
|
||||||
final Keyboard currentKeyboard = switcher.getKeyboard();
|
final Keyboard currentKeyboard = keyboardSwitcher.getKeyboard();
|
||||||
if (null != currentKeyboard && currentKeyboard.mId.isAlphabetKeyboard()) {
|
if (null != currentKeyboard && currentKeyboard.mId.isAlphabetKeyboard()) {
|
||||||
// TODO: Instead of checking for alphabetic keyboard here, separate keycodes for
|
// TODO: Instead of checking for alphabetic keyboard here, separate keycodes for
|
||||||
// alphabetic shift and shift while in symbol layout.
|
// alphabetic shift and shift while in symbol layout.
|
||||||
|
@ -285,7 +284,7 @@ public final class InputLogic {
|
||||||
code, x, y, spaceState, keyboardSwitcher, handler);
|
code, x, y, spaceState, keyboardSwitcher, handler);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
switcher.onCodeInput(code);
|
keyboardSwitcher.onCodeInput(code);
|
||||||
// Reset after any single keystroke, except shift, capslock, and symbol-shift
|
// Reset after any single keystroke, except shift, capslock, and symbol-shift
|
||||||
if (!didAutoCorrect && code != Constants.CODE_SHIFT
|
if (!didAutoCorrect && code != Constants.CODE_SHIFT
|
||||||
&& code != Constants.CODE_CAPSLOCK
|
&& code != Constants.CODE_CAPSLOCK
|
||||||
|
|
Loading…
Reference in New Issue