Skip to content

Commit c37a134

Browse files
committed
fix typo
1 parent dc1db71 commit c37a134

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public ForkJoinTask<?> submit(Runnable task) {
8686

8787
@SuppressWarnings("unchecked")
8888
public <T> List<Future<T>> invokeAllUninterruptibly(Collection<? extends Callable<T>> tasks) {
89-
VMError.guarantee(JavaVersionUtil.JAVA_SPEC >= 22, "invokeAllUninterruptibly only exits in JDK 22+");
89+
VMError.guarantee(JavaVersionUtil.JAVA_SPEC >= 22, "invokeAllUninterruptibly only exists in JDK 22+");
9090
var m = ReflectionUtil.lookupMethod(ForkJoinPool.class, "invokeAllUninterruptibly", Collection.class);
9191
try {
9292
return (List<Future<T>>) m.invoke(ForkJoinPool.commonPool(), tasks);

0 commit comments

Comments
 (0)