From 6e65ff80012048d7b85f16744f9c8e1c5ed1516d Mon Sep 17 00:00:00 2001 From: Jean Chalard Date: Fri, 14 Sep 2012 15:20:52 +0900 Subject: [PATCH] Fix comment warnings (A9) Thanks Eclipse Change-Id: Ie2b83f1ec7ab38a76155f8c264e3944685ae934d --- .../src/com/android/inputmethod/latin/StringUtils.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/java/src/com/android/inputmethod/latin/StringUtils.java b/java/src/com/android/inputmethod/latin/StringUtils.java index 52fda044a..0fc6c32d7 100644 --- a/java/src/com/android/inputmethod/latin/StringUtils.java +++ b/java/src/com/android/inputmethod/latin/StringUtils.java @@ -194,15 +194,15 @@ public final class StringUtils { * * @param cs The text that should be checked for caps modes. * @param reqModes The modes to be checked: may be any combination of - * {@link #CAP_MODE_CHARACTERS}, {@link #CAP_MODE_WORDS}, and - * {@link #CAP_MODE_SENTENCES}. + * {@link TextUtils#CAP_MODE_CHARACTERS}, {@link TextUtils#CAP_MODE_WORDS}, and + * {@link TextUtils#CAP_MODE_SENTENCES}. * * @return Returns the actual capitalization modes that can be in effect * at the current position, which is any combination of - * {@link #CAP_MODE_CHARACTERS}, {@link #CAP_MODE_WORDS}, and - * {@link #CAP_MODE_SENTENCES}. + * {@link TextUtils#CAP_MODE_CHARACTERS}, {@link TextUtils#CAP_MODE_WORDS}, and + * {@link TextUtils#CAP_MODE_SENTENCES}. */ - public static int getCapsMode(CharSequence cs, int reqModes) { + public static int getCapsMode(final CharSequence cs, final int reqModes) { // Quick description of what we want to do: // CAP_MODE_CHARACTERS is always on. // CAP_MODE_WORDS is on if there is some whitespace before the cursor.