You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2009/12/16 18:04:48 UTC

svn commit: r891316 - /commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java

Author: sebb
Date: Wed Dec 16 17:04:47 2009
New Revision: 891316

URL: http://svn.apache.org/viewvc?rev=891316&view=rev
Log:
Javadoc fix

Modified:
    commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java

Modified: commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java?rev=891316&r1=891315&r2=891316&view=diff
==============================================================================
--- commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java (original)
+++ commons/proper/lang/trunk/src/java/org/apache/commons/lang3/ArrayUtils.java Wed Dec 16 17:04:47 2009
@@ -3203,7 +3203,8 @@
      * the new array is the same as that of the input array.</p>
      *
      * <p>If the input array is <code>null</code>, a new one element array is returned
-     *  whose component type is the same as the element.</p>
+     *  whose component type is the same as the element, unless the element itself is null,
+     *  in which case the return type is Object[]</p>
      *
      * <pre>
      * ArrayUtils.add(null, null)      = [null]