diff options
author | 2010-09-02 06:44:13 -0700 | |
---|---|---|
committer | 2010-09-02 06:44:13 -0700 | |
commit | 2fb7e2ff4dfdd2a2563df7eda5be0691f35eb342 (patch) | |
tree | b87c7a64db56ef8408804e511f4dfafd86339860 /java/src | |
parent | e9eda7ea9442300984f0f9510ee189e4b894166d (diff) | |
parent | c98e7cb28b4e05883531266c31ea4c09fca74edc (diff) | |
download | latinime-2fb7e2ff4dfdd2a2563df7eda5be0691f35eb342.tar.gz latinime-2fb7e2ff4dfdd2a2563df7eda5be0691f35eb342.tar.xz latinime-2fb7e2ff4dfdd2a2563df7eda5be0691f35eb342.zip |
am c98e7cb2: am 0fe4c9e1: Corresponding to TBR of Ie6cf6768
Merge commit 'c98e7cb28b4e05883531266c31ea4c09fca74edc'
* commit 'c98e7cb28b4e05883531266c31ea4c09fca74edc':
Corresponding to TBR of Ie6cf6768
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/PointerTracker.java | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/java/src/com/android/inputmethod/latin/PointerTracker.java b/java/src/com/android/inputmethod/latin/PointerTracker.java index 2a7a31793..5b5cbe5cc 100644 --- a/java/src/com/android/inputmethod/latin/PointerTracker.java +++ b/java/src/com/android/inputmethod/latin/PointerTracker.java @@ -27,7 +27,7 @@ import android.view.ViewConfiguration; public class PointerTracker { private static final String TAG = "PointerTracker"; private static final boolean DEBUG = false; - private static final boolean DEBUG_MOVE = true && DEBUG; + private static final boolean DEBUG_MOVE = DEBUG && true; public interface UIProxy { public void invalidateKey(Key key); @@ -425,8 +425,7 @@ public class PointerTracker { int primaryCode = key.codes[0]; code = String.format((primaryCode < 0) ? "%4d" : "0x%02x", primaryCode); } - Log.d(TAG, - String.format("%s [%d] %3d,%3d %s %s", title, mPointerId, x, y, code, - isModifier() ? "modifier" : "")); + Log.d(TAG, String.format("%s [%d] %3d,%3d %s %s", title, mPointerId, x, y, code, + isModifier() ? "modifier" : "")); } }
\ No newline at end of file |