diff options
author | 2012-03-29 15:07:53 +0900 | |
---|---|---|
committer | 2012-03-29 15:07:53 +0900 | |
commit | c61cd79229b1871d0f603a23389695d7f7751e66 (patch) | |
tree | de1fffc1ea1663f86d60d1a4164e760c5cdb13c0 /java/src/com/android/inputmethod/compat/SuggestionsInfoCompatUtils.java | |
parent | fc50a410782008e510fb95aa69d583a8f8e40c3f (diff) | |
download | latinime-c61cd79229b1871d0f603a23389695d7f7751e66.tar.gz latinime-c61cd79229b1871d0f603a23389695d7f7751e66.tar.xz latinime-c61cd79229b1871d0f603a23389695d7f7751e66.zip |
Fix some obvious compiler warnings
Change-Id: I10a634f7492b45d5a72345f14d36cf341946387d
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() { |