This is the mail archive of the
java-patches@gcc.gnu.org
mailing list for the Java project.
[gcjx] Patch: FYI: minor classloader fix
- From: Tom Tromey <tromey at redhat dot com>
- To: Java Patch List <java-patches at gcc dot gnu dot org>
- Date: 28 Apr 2005 20:38:03 -0600
- Subject: [gcjx] Patch: FYI: minor classloader fix
- Reply-to: tromey at redhat dot com
I'm checking this in on the gcjx branch.
I forgot to look at the bottom of the loop for the redundant update
code when I made my last patch to the classloader code on the branch.
Tom
Index: ChangeLog
from Tom Tromey <tromey@redhat.com>
* java/lang/natClassLoader.cc (_Jv_RegisterClassHookDefault):
Remove redundant update.
Index: java/lang/natClassLoader.cc
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/natClassLoader.cc,v
retrieving revision 1.74.2.1
diff -u -r1.74.2.1 natClassLoader.cc
--- java/lang/natClassLoader.cc 27 Apr 2005 17:55:14 -0000 1.74.2.1
+++ java/lang/natClassLoader.cc 29 Apr 2005 02:13:26 -0000
@@ -171,8 +171,6 @@
throw new java::lang::VirtualMachineError (str);
}
}
-
- check_class = check_class->next;
}
// FIXME: this is really bogus!