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 dc1db71 commit c37a134Copy full SHA for c37a134
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/DeferredCommonPool.java
@@ -86,7 +86,7 @@ public ForkJoinTask<?> submit(Runnable task) {
86
87
@SuppressWarnings("unchecked")
88
public <T> List<Future<T>> invokeAllUninterruptibly(Collection<? extends Callable<T>> tasks) {
89
- VMError.guarantee(JavaVersionUtil.JAVA_SPEC >= 22, "invokeAllUninterruptibly only exits in JDK 22+");
+ VMError.guarantee(JavaVersionUtil.JAVA_SPEC >= 22, "invokeAllUninterruptibly only exists in JDK 22+");
90
var m = ReflectionUtil.lookupMethod(ForkJoinPool.class, "invokeAllUninterruptibly", Collection.class);
91
try {
92
return (List<Future<T>>) m.invoke(ForkJoinPool.commonPool(), tasks);
0 commit comments