ggregory 2004/07/27 14:10:34
Modified: lang/src/java/org/apache/commons/lang ArrayUtils.java
Log:
Javadoc.
Revision Changes Path
1.45 +6 -6
jakarta-commons/lang/src/java/org/apache/commons/lang/ArrayUtils.java
Index: ArrayUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/lang/src/java/org/apache/commons/lang/ArrayUtils.java,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -r1.44 -r1.45
--- ArrayUtils.java 6 Jun 2004 03:53:23 -0000 1.44
+++ ArrayUtils.java 27 Jul 2004 21:10:33 -0000 1.45
@@ -2869,9 +2869,9 @@
}
/**
- * <p>Adds all the elements of the provided arrays into a new array.</p>
+ * <p>Adds all the elements of the given arrays into a new array.</p>
* <p>The new array contains all of the element of <code>array1</code> followed
- * by all of the elements <code>array2</code>. If an array is returned, it is
always
+ * by all of the elements <code>array2</code>. When an array is returned, it is
always
* a new array.</p>
*
* <pre>
@@ -2883,9 +2883,9 @@
* ArrayUtils.addAll(["a", "b", "c"], ["1", "2", "3"]) = ["a", "b", "c", "1",
"2", "3"]
* </pre>
*
- * @param array1 the first array whose elements are added to the new array,
may be null
- * @param array2 the second array whose elements are added to the new array,
may be null
- * @return The new array, <code>null</code> if null array inputs.
+ * @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.
* @since 2.1
*/
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]