aboutsummaryrefslogtreecommitdiffstats
path: root/java/src
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2012-02-07 19:42:26 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-02-07 19:42:26 -0800
commit5a6daf46cf52a3d7e95926c3fcbb3b3295159c29 (patch)
tree6d14b8b9da34f17ee101d3bbee9ca7f6c7433b9f /java/src
parent2e2d6b4d4060ed3b956b4bd4c1f89b5d9c87b525 (diff)
parent862f950da3a35e622854e3e5a733c7b592ca7389 (diff)
downloadlatinime-5a6daf46cf52a3d7e95926c3fcbb3b3295159c29.tar.gz
latinime-5a6daf46cf52a3d7e95926c3fcbb3b3295159c29.tar.xz
latinime-5a6daf46cf52a3d7e95926c3fcbb3b3295159c29.zip
Merge "Cleanup"
Diffstat (limited to 'java/src')
-rw-r--r--java/src/com/android/inputmethod/latin/LatinIME.java6
1 files changed, 1 insertions, 5 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java
index d74d8203f..c6278c250 100644
--- a/java/src/com/android/inputmethod/latin/LatinIME.java
+++ b/java/src/com/android/inputmethod/latin/LatinIME.java
@@ -1533,11 +1533,7 @@ public class LatinIME extends InputMethodServiceCompatWrapper implements Keyboar
sendKeyChar((char)code);
}
- if (mSettingsValues.isWordSeparator(code)) {
- Utils.Stats.onSeparator((char)code, x, y);
- } else {
- Utils.Stats.onNonSeparator((char)code, x, y);
- }
+ Utils.Stats.onNonSeparator((char)code, x, y);
}
// Returns true if we did an autocorrection, false otherwise.