2004-01-09 Michael Koch <konqueror@gmx.de>

* gnu/java/lang/ArrayHelper.java
	(equalsArray): Removed.

From-SVN: r75592
This commit is contained in:
Michael Koch 2004-01-09 17:18:29 +00:00 committed by Michael Koch
parent d55d97f163
commit e6f8299852
2 changed files with 5 additions and 19 deletions

View file

@ -1,3 +1,8 @@
2004-01-09 Michael Koch <konqueror@gmx.de>
* gnu/java/lang/ArrayHelper.java
(equalsArray): Removed.
2004-01-09 Andrew Haley <aph@redhat.com>
* java/lang/natClassLoader.cc (_Jv_PrepareCompiledClass): Resolve

View file

@ -75,23 +75,4 @@ public class ArrayHelper
}
return -1;
}
/**
* Checks if two arrays are equal.
*
* @param array1 the first array
* @param array2 the second array
* @return true if both arrays are equal.
*/
public static boolean equalsArray(Object[] array1, Object[] array2)
{
if (array1.length != array2.length)
return false;
for (int index = 0; index < array1.length; index++)
if (!array1 [index].equals (array2 [index]))
return false;
return true;
}
}