aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/MainLogBuffer.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-07-30 16:00:43 +0900
committerJean Chalard <jchalard@google.com>2013-07-31 16:17:01 +0900
commit93445b4821e9e8ecc7dd52f1a5d5316c7eec2654 (patch)
tree3f4611964a2de3a1615426edde15e1f19f55f1f9 /java/src/com/android/inputmethod/research/MainLogBuffer.java
parentf8c1aefd90fced4edec4eaa8d4a9ded0edc5ccf3 (diff)
downloadlatinime-93445b4821e9e8ecc7dd52f1a5d5316c7eec2654.tar.gz
latinime-93445b4821e9e8ecc7dd52f1a5d5316c7eec2654.tar.xz
latinime-93445b4821e9e8ecc7dd52f1a5d5316c7eec2654.zip
Fix some warnings
Change-Id: I7290cd1fb675a1b85b9b6ac2d464c932b5bca1dd
Diffstat (limited to 'java/src/com/android/inputmethod/research/MainLogBuffer.java')
-rw-r--r--java/src/com/android/inputmethod/research/MainLogBuffer.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/research/MainLogBuffer.java b/java/src/com/android/inputmethod/research/MainLogBuffer.java
index 3482153b4..6df7c1708 100644
--- a/java/src/com/android/inputmethod/research/MainLogBuffer.java
+++ b/java/src/com/android/inputmethod/research/MainLogBuffer.java
@@ -119,9 +119,9 @@ public abstract class MainLogBuffer extends FixedLogBuffer {
*
* @param logUnits a LogUnit list to check for publishability
* @param nGramSize the smallest n-gram acceptable to be published. if
- * {@link ResearchLogger.IS_LOGGING_EVERYTHING} is true, then publish if there are more than
+ * {@link ResearchLogger#IS_LOGGING_EVERYTHING} is true, then publish if there are more than
* {@code minNGramSize} words in the logUnits, otherwise wait. if {@link
- * ResearchLogger.IS_LOGGING_EVERYTHING} is false, then ensure that there are exactly nGramSize
+ * ResearchLogger#IS_LOGGING_EVERYTHING} is false, then ensure that there are exactly nGramSize
* words in the LogUnits.
*
* @return one of the {@code PUBLISHABILITY_*} result codes defined in this class.