Simplify isEmpty be reusing getLength
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1671623 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
319588b45c
commit
ef51b068ae
|
@ -3453,7 +3453,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final Object[] array) {
|
public static boolean isEmpty(final Object[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3464,7 +3464,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final long[] array) {
|
public static boolean isEmpty(final long[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3475,7 +3475,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final int[] array) {
|
public static boolean isEmpty(final int[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3486,7 +3486,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final short[] array) {
|
public static boolean isEmpty(final short[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3497,7 +3497,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final char[] array) {
|
public static boolean isEmpty(final char[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3508,7 +3508,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final byte[] array) {
|
public static boolean isEmpty(final byte[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3519,7 +3519,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final double[] array) {
|
public static boolean isEmpty(final double[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3530,7 +3530,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final float[] array) {
|
public static boolean isEmpty(final float[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -3541,7 +3541,7 @@ public class ArrayUtils {
|
||||||
* @since 2.1
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
public static boolean isEmpty(final boolean[] array) {
|
public static boolean isEmpty(final boolean[] array) {
|
||||||
return array == null || array.length == 0;
|
return getLength(array) == 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ----------------------------------------------------------------------
|
// ----------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue