diff options
author | 2012-03-29 00:18:36 -0700 | |
---|---|---|
committer | 2012-03-29 00:18:36 -0700 | |
commit | 20b4c223b4811cd99d2c400b3ed459f6ad76312d (patch) | |
tree | 576c6997efdfd145c58c7aec5a6500984f200ec7 /java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java | |
parent | 499c5e8ad8cc8657195449487f7f18e91afbe92b (diff) | |
parent | c61cd79229b1871d0f603a23389695d7f7751e66 (diff) | |
download | latinime-20b4c223b4811cd99d2c400b3ed459f6ad76312d.tar.gz latinime-20b4c223b4811cd99d2c400b3ed459f6ad76312d.tar.xz latinime-20b4c223b4811cd99d2c400b3ed459f6ad76312d.zip |
Merge "Fix some obvious compiler warnings"
Diffstat (limited to 'java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java')
-rw-r--r-- | java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java b/java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java index 6a0d4dd9e..723ec2862 100644 --- a/java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java +++ b/java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java @@ -24,7 +24,7 @@ public class SuggestionsInfoCompatUtils { private static final Field FIELD_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS = CompatUtils.getField( SuggestionsInfo.class, "RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS"); private static final Integer OBJ_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS = (Integer) CompatUtils - .getFieldValue(null, null, FIELD_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS);; + .getFieldValue(null, null, FIELD_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS); private static final int RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS = OBJ_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS != null ? OBJ_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS : 0; @@ -34,7 +34,7 @@ public class SuggestionsInfoCompatUtils { /** * Returns the flag value of the attributes of the suggestions that can be obtained by - * {@link #getSuggestionsAttributes}: this tells that the text service thinks + * {@link SuggestionsInfo#getSuggestionsAttributes()}: this tells that the text service thinks * the result suggestions include highly recommended ones. */ public static int getValueOf_RESULT_ATTR_HAS_RECOMMENDED_SUGGESTIONS() { |