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:
parent
5aa9532c4e
commit
8beafc0da1
|
@ -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 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>
|
* @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.
|
* @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.
|
* 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
|
* @since 2.1
|
||||||
*/
|
*/
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
|
Loading…
Reference in New Issue