1/*
2 * Copyright (c) 2007 Mockito contributors
3 * This program is made available under the terms of the MIT License.
4 */
5package org.mockito.internal.util.collections;
6
7@SuppressWarnings("unchecked")
8public class ArrayUtils {
9
10    public <T> boolean isEmpty(T[] array) {
11        return array == null || array.length == 0;
12    }
13
14}