aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/MainLogBuffer.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-07-31 07:38:49 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2013-07-31 07:38:49 +0000
commit8d46ea915645361856a0b3df3db1c83888cb39ff (patch)
treef0f66f32cbe56b2b05961fa6cd6aeb2bb920557c /java/src/com/android/inputmethod/research/MainLogBuffer.java
parent7d654d8cae47f50127021918c24201bb1f0e9a06 (diff)
parent93445b4821e9e8ecc7dd52f1a5d5316c7eec2654 (diff)
downloadlatinime-8d46ea915645361856a0b3df3db1c83888cb39ff.tar.gz
latinime-8d46ea915645361856a0b3df3db1c83888cb39ff.tar.xz
latinime-8d46ea915645361856a0b3df3db1c83888cb39ff.zip
Merge "Fix some warnings"
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.