-
Type:
Bug
-
Resolution: Not an Issue
-
Priority:
P4
-
Affects Version/s: 9
-
Component/s: client-libs
----------------------------------
The 1.2 implementation matched the docs :-
Class docClass = getDocument().getClass();
ClassLoader loader = docClass.getClassLoader();
if (loader != null) { klass = loader.loadClass(classname);
} else{ klass = Class.forName(classname); }
return klass;
It appears to have diverged with these two changes
https://bugs.openjdk.java.net/browse/JDK-4247726
https://bugs.openjdk.java.net/browse/JDK-4452042
----------------------------------
The 1.2 implementation matched the docs :-
Class docClass = getDocument().getClass();
ClassLoader loader = docClass.getClassLoader();
if (loader != null) { klass = loader.loadClass(classname);
} else{ klass = Class.forName(classname); }
return klass;
It appears to have diverged with these two changes
https://bugs.openjdk.java.net/browse/JDK-4247726
https://bugs.openjdk.java.net/browse/JDK-4452042
----------------------------------