OSDN Git Service

2004-01-09 Michael Koch <konqueror@gmx.de>
authormkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Jan 2004 17:18:29 +0000 (17:18 +0000)
committermkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 9 Jan 2004 17:18:29 +0000 (17:18 +0000)
* gnu/java/lang/ArrayHelper.java
(equalsArray): Removed.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@75592 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/gnu/java/lang/ArrayHelper.java

index 5a4860b..f09ba27 100644 (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
index aac7a54..5ce0a99 100644 (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;
-  }
 }