aboutsummaryrefslogtreecommitdiffstats
path: root/java/src/com/android/inputmethod/research/MainLogBuffer.java
diff options
context:
space:
mode:
authorJean Chalard <jchalard@google.com>2013-07-31 00:39:38 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-07-31 00:39:38 -0700
commit5cc606aca6e5fc8848f7b1e69a97bfaaaae93f93 (patch)
tree5b83e52d634b3011d4cf962942c68092d4e11c9d /java/src/com/android/inputmethod/research/MainLogBuffer.java
parent81fb25aeb7738d3807f54227fe47b97783ab2af6 (diff)
parent8d46ea915645361856a0b3df3db1c83888cb39ff (diff)
downloadlatinime-5cc606aca6e5fc8848f7b1e69a97bfaaaae93f93.tar.gz
latinime-5cc606aca6e5fc8848f7b1e69a97bfaaaae93f93.tar.xz
latinime-5cc606aca6e5fc8848f7b1e69a97bfaaaae93f93.zip
am 8d46ea91: Merge "Fix some warnings"
* commit '8d46ea915645361856a0b3df3db1c83888cb39ff': 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.