Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7a3de4dc authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Add null analysis annotation to CollectionUtils

Change-Id: I3a610b037d6d1431cced3ea193171108bd5a040d
parent 5547b49b
Loading
Loading
Loading
Loading
+7 −5
Original line number Diff line number Diff line
@@ -19,15 +19,17 @@ package com.android.inputmethod.latin.utils;
import java.util.ArrayList;
import java.util.Collection;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

public final class CollectionUtils {
    private CollectionUtils() {
        // This utility class is not publicly instantiable.
    }

    public static <E> ArrayList<E> arrayAsList(final E[] array, final int start, final int end) {
        if (array == null) {
            throw new NullPointerException();
        }
    @Nonnull
    public static <E> ArrayList<E> arrayAsList(@Nonnull final E[] array, final int start,
            final int end) {
        if (start < 0 || start > end || end > array.length) {
            throw new IllegalArgumentException();
        }
@@ -44,7 +46,7 @@ public final class CollectionUtils {
     * @param c Collection to test.
     * @return Whether c contains no elements.
     */
    public static boolean isNullOrEmpty(final Collection<?> c) {
    public static boolean isNullOrEmpty(@Nullable final Collection<?> c) {
        return c == null || c.isEmpty();
    }
}
+0 −1
Original line number Diff line number Diff line
@@ -51,5 +51,4 @@ public class CollectionUtilsTests extends AndroidTestCase {
        assertTrue(CollectionUtils.isNullOrEmpty(Collections.EMPTY_SET));
        assertFalse(CollectionUtils.isNullOrEmpty(Collections.singleton("Not empty")));
    }

}