Skip to content

Commit 22ab614

Browse files
committed
[GR-63337] Remove pointless parallel stream processing for classpath entries.
PullRequest: graal/20377
2 parents e397bc1 + 8ecf113 commit 22ab614

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/NativeImageClassLoaderSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -817,7 +817,7 @@ private void run() {
817817
initModule(moduleReference, true);
818818
}
819819

820-
classpath().parallelStream().forEach(this::loadClassesFromPath);
820+
classpath().forEach(this::loadClassesFromPath);
821821
} finally {
822822
scheduledExecutor.shutdown();
823823
}

0 commit comments

Comments
 (0)