We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 00918bb commit 9b4aa2dCopy full SHA for 9b4aa2d
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/hub/registry/BootClassRegistry.java
@@ -69,6 +69,9 @@ public synchronized Class<?> doLoadClass(Symbol<Type> type) {
69
// Only looking into the jimage for now. There could be appended elements.
70
// see GraalServices.getSavedProperty("jdk.boot.class.path.append")
71
String pkg = packageFromType(type);
72
+ if (pkg == null) {
73
+ return null;
74
+ }
75
try {
76
String moduleName = ClassRegistries.getBootModuleForPackage(pkg);
77
if (moduleName == null) {
0 commit comments