git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@739041 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Matthew Jason Benson 2009-01-29 22:00:55 +00:00
parent 10e6a671fc
commit 00fee20efc
1 changed files with 11 additions and 12 deletions

View File

@ -856,8 +856,7 @@ private static String toCanonicalName(String className) {
* @return a <code>Class</code> array, <code>null</code> if null array input
* @since 2.4
*/
public static Class[] toClass(Object[] array)
{
public static Class[] toClass(Object[] array) {
if (array == null) {
return null;
} else if (array.length == 0) {