diff options
author | 2013-03-25 17:20:13 -0700 | |
---|---|---|
committer | 2013-04-01 16:48:15 -0700 | |
commit | 636b8c4231424bd57672aac20cf48f22c496d62a (patch) | |
tree | 7af2ae7354c2f9a1dcf05e66197be18f9ccd60ea /java/src | |
parent | 54c091d284b15e14cbcbce983354f679526672ec (diff) | |
download | latinime-636b8c4231424bd57672aac20cf48f22c496d62a.tar.gz latinime-636b8c4231424bd57672aac20cf48f22c496d62a.tar.xz latinime-636b8c4231424bd57672aac20cf48f22c496d62a.zip |
Do not record log split time when handling separator
Previously handleSeparator() caused the ResearchLogger to mark the time at which a LogUnit should be
broken. However, this causes the motion data associated with a separator to be associated with the
LogUnit of the previous word. This change corrects this bug.
Change-Id: I8b4d4fa6de2a013de9e2a28bb668c446a07f1957
Diffstat (limited to 'java/src')
-rw-r--r-- | java/src/com/android/inputmethod/latin/LatinIME.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/LatinIME.java b/java/src/com/android/inputmethod/latin/LatinIME.java index 92b68dcd7..4a0af270d 100644 --- a/java/src/com/android/inputmethod/latin/LatinIME.java +++ b/java/src/com/android/inputmethod/latin/LatinIME.java @@ -1905,7 +1905,6 @@ public final class LatinIME extends InputMethodService implements KeyboardAction private boolean handleSeparator(final int primaryCode, final int x, final int y, final int spaceState) { if (ProductionFlag.USES_DEVELOPMENT_ONLY_DIAGNOSTICS) { - ResearchLogger.recordTimeForLogUnitSplit(); ResearchLogger.latinIME_handleSeparator(primaryCode, mWordComposer.isComposingWord()); } boolean didAutoCorrect = false; |