Fixed a bit of javadoc with bad xhtml

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@419177 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Henri Yandell 2006-07-05 06:36:02 +00:00
parent 3f84c0412c
commit d9c144d8c3
1 changed files with 6 additions and 10 deletions

View File

@ -2315,18 +2315,14 @@ public class ArrayUtils {
}
/**
* Converts an array of primitive chars to objects.<br>
* <p>
* <strong>This is method is not in ArrayUtils.</strong>
* </p>
* <p>
* This method returns <code>null</code> for a <code>null</code> input
* array.
* </p>
* <p>Converts an array of primitive chars to objects.</p>
*
* <p><strong>This is method is not in ArrayUtils.</strong></p>
*
* <p>This method returns <code>null</code> for a <code>null</code> input array.</p>
*
* @param array a <code>char</code> array
* @return a <code>Character</code> array, <code>null</code> if null
* array input
* @return a <code>Character</code> array, <code>null</code> if null array input
*/
public static Object[] toObject(char[] array) {
if ( array == null ) {