Hi,

The mauve TreePath PR27651 testcase has a failure which seems easy to
resolve:

2006-07-24  Mark Wielaard  <[EMAIL PROTECTED]>

     * javax/swing/tree/TreePath.java (equals): Swap path equals call.

Roman, you created this test and said it didn't fail before in:
http://gcc.gnu.org/PR27651 Could you see if you had a similar change in
you tree back then already? Or do you know what changed between then and
now that it started failing?

Thanks,

Mark

diff -u -r1.12 TreePath.java
--- javax/swing/tree/TreePath.java      7 Jun 2006 14:36:03 -0000
1.12
+++ javax/swing/tree/TreePath.java      24 Jul 2006 23:43:02 -0000
@@ -174,7 +174,7 @@
           return false;
         for (index = 0; index < path.length; index++)
           {
-            if (!treepath[index].equals(path[index]))
+            if (!path[index].equals(treepath[index]))
               return false;
           }




Reply via email to