aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/com/android/inputmethod
diff options
context:
space:
mode:
Diffstat (limited to 'common/src/com/android/inputmethod')
-rw-r--r--common/src/com/android/inputmethod/latin/common/CollectionUtils.java13
1 files changed, 12 insertions, 1 deletions
diff --git a/common/src/com/android/inputmethod/latin/common/CollectionUtils.java b/common/src/com/android/inputmethod/latin/common/CollectionUtils.java
index 48df413fd..80fae5f51 100644
--- a/common/src/com/android/inputmethod/latin/common/CollectionUtils.java
+++ b/common/src/com/android/inputmethod/latin/common/CollectionUtils.java
@@ -20,6 +20,7 @@ import com.android.inputmethod.annotations.UsedForTesting;
import java.util.ArrayList;
import java.util.Collection;
+import java.util.Map;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
@@ -60,7 +61,17 @@ public final class CollectionUtils {
* @return Whether c contains no elements.
*/
@UsedForTesting
- public static boolean isNullOrEmpty(@Nullable final Collection<?> c) {
+ public static boolean isNullOrEmpty(@Nullable final Collection c) {
return c == null || c.isEmpty();
}
+
+ /**
+ * Tests whether map contains no elements, true if map is null or map is empty.
+ * @param map Map to test.
+ * @return Whether map contains no elements.
+ */
+ @UsedForTesting
+ public static boolean isNullOrEmpty(@Nullable final Map map) {
+ return map == null || map.isEmpty();
+ }
}