Skip to content

Commit 06969c8

Browse files
committed
Note remaining BuiltinClassLoader module lookup work
1 parent 21338cc commit 06969c8

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/Target_jdk_internal_loader_BuiltinClassLoader.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,9 @@ public URL findResource(String name) {
109109
return url;
110110
}
111111
}
112+
113+
// TODO GR-73221: Also look into the modules defined to this loader
114+
112115
return ucp == null ? null : ucp.findResource(name);
113116
}
114117

@@ -125,6 +128,9 @@ public Enumeration<URL> findResources(String name) throws IOException {
125128
// Workaround for GR-73221: Only retrieve image resources for boot loader
126129
resources.addAll(ResourcesHelper.nameToResourceListURLs(name));
127130
}
131+
132+
// TODO GR-73221: Also look into the modules defined to this loader
133+
128134
if (ucp != null) {
129135
Enumeration<URL> e = ucp.findResources(name);
130136
if (resources.isEmpty()) {

0 commit comments

Comments
 (0)