Matthias Radestock wrote:
Class res = resolvePrimitveType(name);
if (res != null) return res;
try {
return Class.forName(name, true, cl);
} catch (ClassNotFoundException e) {
return null;
}
Can you give this a try and see wheter it fixes the problem?
Bingo! Thanks. I just put it in CVS.
PS: I think this code has not changed in a long time, so it is strange
that the behaviour has.
Scott hypothesized that it's due to the "optimizations" in JDK 1.4.2.
-Turadg
-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines at the
same time. Free trial click here: http://www.vmware.com/wl/offer/345/0
|