aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2011-12-12 00:17:19 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2011-12-12 00:17:19 -0800
commit6c37c6539d9ca240e96b1f1211747f46cb26a47c (patch)
tree564c79a991231659f5eb0d4bbdfa9e4f1e7d195d /java/src/com
parent8d987f75da339e03269768812f85f56748c54fe0 (diff)
parentaa59e24ebec5e09c62d564d97fe790c6763ffc54 (diff)
downloadlatinime-6c37c6539d9ca240e96b1f1211747f46cb26a47c.tar.gz
latinime-6c37c6539d9ca240e96b1f1211747f46cb26a47c.tar.xz
latinime-6c37c6539d9ca240e96b1f1211747f46cb26a47c.zip
am aa59e24e: Merge "Add unit test of KeyboardState"
* commit 'aa59e24ebec5e09c62d564d97fe790c6763ffc54': Add unit test of KeyboardState
Diffstat (limited to 'java/src/com')
-rw-r--r--java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java b/java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java
index 292194b4d..623cab303 100644
--- a/java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java
+++ b/java/src/com/android/inputmethod/keyboard/internal/KeyboardState.java
@@ -265,7 +265,7 @@ public class KeyboardState {
public void onUpdateShiftState(boolean autoCaps) {
if (DEBUG_STATE) {
- Log.d(TAG, "onUpdateShiftState: " + this + " autoCaps=" + autoCaps);
+ Log.d(TAG, "onUpdateShiftState: autoCaps=" + autoCaps + " " + this);
}
if (mIsAlphabetMode) {
if (!mKeyboardShiftState.isShiftLocked() && !mShiftKeyState.isIgnoring()) {
@@ -286,7 +286,7 @@ public class KeyboardState {
public void onPressShift(boolean withSliding) {
if (DEBUG_STATE) {
- Log.d(TAG, "onPressShift: " + this + " sliding=" + withSliding);
+ Log.d(TAG, "onPressShift: sliding=" + withSliding + " " + this);
}
if (mIsAlphabetMode) {
if (mKeyboardShiftState.isShiftLocked()) {
@@ -318,7 +318,7 @@ public class KeyboardState {
public void onReleaseShift(boolean withSliding) {
if (DEBUG_STATE) {
- Log.d(TAG, "onReleaseShift: " + this + " sliding=" + withSliding);
+ Log.d(TAG, "onReleaseShift: sliding=" + withSliding + " " + this);
}
if (mIsAlphabetMode) {
final boolean isShiftLocked = mKeyboardShiftState.isShiftLocked();