Fix Javadoc

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@891268 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-12-16 14:54:48 +00:00
parent 5aa9532c4e
commit 8beafc0da1
1 changed files with 3 additions and 2 deletions

View File

@ -2944,8 +2944,9 @@ public class ArrayUtils {
*
* @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")