diff options
author | 2010-09-02 22:23:50 +0900 | |
---|---|---|
committer | 2010-09-02 22:34:15 +0900 | |
commit | 0fe4c9e1a78445a27b74ae24afb292a84a893703 (patch) | |
tree | 6932a8f77499d6d799e79d125e81958bd51bd432 /java/src/com/android/inputmethod/latin/PointerTracker.java | |
parent | 400046d62e22899e28efd2a62321c637c7831f81 (diff) | |
download | latinime-0fe4c9e1a78445a27b74ae24afb292a84a893703.tar.gz latinime-0fe4c9e1a78445a27b74ae24afb292a84a893703.tar.xz latinime-0fe4c9e1a78445a27b74ae24afb292a84a893703.zip |
Corresponding to TBR of Ie6cf6768
This is follow up change of Ie6cf67681180467bd8ba35d0205ce6727b7684a2
Bug: 2959169
Change-Id: I9e4cb0c9178856ddd6049f0b751b54f3ad26a266
Diffstat (limited to 'java/src/com/android/inputmethod/latin/PointerTracker.java')
-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 |