Fixed typo in javadoc for isEquals, repored by Cameron Hayne, hayne at sympatico dot ca.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137743 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Fredrik Westermarck 2004-01-08 17:50:40 +00:00
parent f863d668f3
commit 23b6d90ccf
1 changed files with 3 additions and 3 deletions

View File

@ -81,7 +81,7 @@
* @author Gary Gregory * @author Gary Gregory
* @author <a href="mailto:equinus100@hotmail.com">Ashwin S</a> * @author <a href="mailto:equinus100@hotmail.com">Ashwin S</a>
* @since 2.0 * @since 2.0
* @version $Id: ArrayUtils.java,v 1.30 2003/12/29 01:08:38 ggregory Exp $ * @version $Id: ArrayUtils.java,v 1.31 2004/01/08 17:50:40 fredrik Exp $
*/ */
public class ArrayUtils { public class ArrayUtils {
@ -226,8 +226,8 @@ public static int hashCode(final Object array) {
* *
* <p>Multi-dimensional primitive arrays are also handled correctly by this method.</p> * <p>Multi-dimensional primitive arrays are also handled correctly by this method.</p>
* *
* @param array1 the array to get a hashCode for, may be <code>null</code> * @param array1 the left hand array to compare, may be <code>null</code>
* @param array2 the array to get a hashCode for, may be <code>null</code> * @param array2 the right hand array to compare, may be <code>null</code>
* @return <code>true</code> if the arrays are equal * @return <code>true</code> if the arrays are equal
*/ */
public static boolean isEquals(final Object array1, final Object array2) { public static boolean isEquals(final Object array1, final Object array2) {