diff options
author | 2012-03-13 05:19:47 -0700 | |
---|---|---|
committer | 2012-03-13 05:19:47 -0700 | |
commit | e1a91d0b262c59e4c0f1fe20c9c8a8cbb403e99e (patch) | |
tree | d5f5d1859adbe9f4739ed666f5fc5524ff5f05be /java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java | |
parent | 2e2519ee914d4bf9462950553840557a4c19faed (diff) | |
parent | b4fbbe57f574ce6e6a5827156f875fe7d3eb5089 (diff) | |
download | latinime-e1a91d0b262c59e4c0f1fe20c9c8a8cbb403e99e.tar.gz latinime-e1a91d0b262c59e4c0f1fe20c9c8a8cbb403e99e.tar.xz latinime-e1a91d0b262c59e4c0f1fe20c9c8a8cbb403e99e.zip |
Merge "Avoid using collection interface, using array instead"
Diffstat (limited to 'java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java b/java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java index eca922e68..9a523011a 100644 --- a/java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java +++ b/java/src/com/android/inputmethod/compat/MotionEventCompatUtils.java @@ -17,7 +17,7 @@ package com.android.inputmethod.compat; public class MotionEventCompatUtils { - // TODO(alanv): Remove after these are added to MotionEventCompat. + // TODO: Remove after these are added to MotionEventCompat. public static final int ACTION_HOVER_ENTER = 0x9; public static final int ACTION_HOVER_EXIT = 0xA; } |