This is the mail archive of the
java-patches@sourceware.cygnus.com
mailing list for the Java project.
_Jv_FindClass
- To: Java Patch List <java-patches at sourceware dot cygnus dot com>
- Subject: _Jv_FindClass
- From: Tom Tromey <tromey at cygnus dot com>
- Date: 12 Jan 2000 14:17:51 -0700
- Cc: Kresten Krab Thorup <krab at gnu dot org>
- Reply-To: tromey at cygnus dot com
In _Jv_FindClass I see this:
// if "loader" delegateted the loadClass operation
// to another loader, register explicitly
// that he is also an initiating loader of the
// given class.
if (klass && (klass->getClassLoader () != loader))
_Jv_RegisterInitiatingLoader (klass, 0);
Shouldn't the second argument to _Jv_RegisterInitiatingLoader be
`loader'?
Tom