Skip to content

Commit 5b3dbc5

Browse files
committed
Make resources report entry list public.
1 parent 0805e49 commit 5b3dbc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.svm.hosted/src/com/oracle/svm/hosted/EmbeddedResourceExporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ private static void sourceElement(SourceSizePair p, JsonWriter w) throws IOExcep
8989
w.appendObjectEnd();
9090
}
9191

92-
private static List<ResourceReportEntry> getResourceReportEntryList(ConcurrentHashMap<Resources.ModuleResourceKey, List<SourceAndOrigin>> collection) {
92+
public static List<ResourceReportEntry> getResourceReportEntryList(ConcurrentHashMap<Resources.ModuleResourceKey, List<SourceAndOrigin>> collection) {
9393
if (collection.isEmpty()) {
9494
LogUtils.warning("Attempting to write information about resources without data being collected. " +
9595
"Either the GenerateEmbeddedResourcesFile hosted option is disabled " +

0 commit comments

Comments
 (0)