diff options
| author | Kurt Partridge <kep@google.com> | 2012-08-09 15:58:25 -0700 |
|---|---|---|
| committer | Kurt Partridge <kep@google.com> | 2012-12-13 18:44:10 -0800 |
| commit | 5e854e281a525f0c2dcdb753db2fac3eb810470f (patch) | |
| tree | 6ea7267ffaa0262fb6dccd1542ee069191da38ec /java/src/com/android/inputmethod/research/MainLogBuffer.java | |
| parent | 082507e1da56c6cefe575ec3d6a334e9b717e3fa (diff) | |
[Rlog1] Track time of log statements
Log statements are now recorded with a timestamp. This is important for filtering out statements
not part of words that are sampled when spaces are inserted automatically.
multi-project commit with Change-Id: I68221a2528045d25632aef4bb716f92a4f4a56a4
Change-Id: I46ac9b3b1dcbb08425160d0109028cb64445139c
Diffstat (limited to 'java/src/com/android/inputmethod/research/MainLogBuffer.java')
| -rw-r--r-- | java/src/com/android/inputmethod/research/MainLogBuffer.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/research/MainLogBuffer.java b/java/src/com/android/inputmethod/research/MainLogBuffer.java index 94dbf3960..f665e5906 100644 --- a/java/src/com/android/inputmethod/research/MainLogBuffer.java +++ b/java/src/com/android/inputmethod/research/MainLogBuffer.java @@ -113,7 +113,7 @@ public class MainLogBuffer extends LogBuffer { final String word = logUnit.getWord(); if (word == null) { // Digits outside words are a privacy threat. - if (logUnit.hasDigit()) { + if (logUnit.mayContainDigit()) { return false; } } else { |
