aboutsummaryrefslogtreecommitdiffstats
path: root/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
diff options
context:
space:
mode:
authorTadashi G. Takaoka <takaoka@google.com>2014-10-22 14:04:07 +0900
committerTadashi G. Takaoka <takaoka@google.com>2014-10-23 09:58:42 +0900
commitd3a4c5132422b189c8dbb94dbbe84a9b9761b0a8 (patch)
tree0f2e5b9e4dfb35bc1794033621943ec1fe607f52 /tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
parent924b8fd0fa456a084358ce916ac2b637b915946e (diff)
downloadlatinime-d3a4c5132422b189c8dbb94dbbe84a9b9761b0a8.tar.gz
latinime-d3a4c5132422b189c8dbb94dbbe84a9b9761b0a8.tar.xz
latinime-d3a4c5132422b189c8dbb94dbbe84a9b9761b0a8.zip
Fix Javadoc and null analysis related warnings
This CL also adds @SuppressWarning("unused" to java-overridable package. Bug: 18003991 Change-Id: If70527e30654384705d7a814f5efd181d9f539e1
Diffstat (limited to 'tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java')
-rw-r--r--tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java b/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
index 8bda6726e..3feb60ec7 100644
--- a/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
+++ b/tests/src/com/android/inputmethod/latin/utils/CollectionUtilsTests.java
@@ -29,7 +29,7 @@ import java.util.Collections;
@SmallTest
public class CollectionUtilsTests extends AndroidTestCase {
/**
- * Tests that {@link CollectionUtils#arrayAsList(E[],int,int)} gives the expected
+ * Tests that {@link CollectionUtils#arrayAsList(Object[],int,int)} gives the expected
* results for a few valid inputs.
*/
public void testArrayAsList() {
@@ -42,7 +42,7 @@ public class CollectionUtilsTests extends AndroidTestCase {
}
/**
- * Tests that {@link CollectionUtils#isEmpty(java.util.Collection)} gives the expected
+ * Tests that {@link CollectionUtils#isNullOrEmpty(java.util.Collection)} gives the expected
* results for a few cases.
*/
public void testIsNullOrEmpty() {