bring ArrayUtils.isEmpty to the generics world
----------------------------------------------
Key: LANG-504
URL: https://issues.apache.org/jira/browse/LANG-504
Project: Commons Lang
Issue Type: Improvement
Reporter: Pino Silvaggio
Priority: Trivial
Fix For: 3.x
maybe replace the current code by
[code]
public static <T> boolean isEmpty(T[] array)
{
return ((array == null) || (array.length == 0));
}
[code]
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.