Javadoc fix

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@891316 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2009-12-16 17:04:47 +00:00
parent 8beafc0da1
commit 84522bed5d
1 changed files with 2 additions and 1 deletions

View File

@ -3203,7 +3203,8 @@ public class ArrayUtils {
* 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]