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 15:54:49 UTC

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

Author: sebb
Date: Wed Dec 16 14:54:48 2009
New Revision: 891268

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

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=891268&r1=891267&r2=891268&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 14:54:48 2009
@@ -2944,8 +2944,9 @@
      *
      * @param array1  the first array whose elements are added to the new array, may be <code>null</code>
      * @param array2  the second array whose elements are added to the new array, may be <code>null</code>
-     * @return The new array, <code>null</code> if <code>null</code> array inputs.
-     *      The type of the new array is the type of the first array.
+     * @return The new array, <code>null</code> if both arrays are <code>null</code>.
+     *      The type of the new array is the type of the first array,
+     *      unless the first array is null, in which case the type is the same as the second array.
      * @since 2.1
      */
     @SuppressWarnings("unchecked")