diff --git a/substratevm/src/com.oracle.svm.truffle/src/com/oracle/svm/truffle/isolated/IsolatedTruffleCompilerEventForwarder.java b/substratevm/src/com.oracle.svm.truffle/src/com/oracle/svm/truffle/isolated/IsolatedTruffleCompilerEventForwarder.java index db16ae8ae9a3..f7ec66154d2d 100644 --- a/substratevm/src/com.oracle.svm.truffle/src/com/oracle/svm/truffle/isolated/IsolatedTruffleCompilerEventForwarder.java +++ b/substratevm/src/com.oracle.svm.truffle/src/com/oracle/svm/truffle/isolated/IsolatedTruffleCompilerEventForwarder.java @@ -84,7 +84,7 @@ public void onFailure(TruffleCompilable compilable, String reason, boolean bailo @Override public void onCompilationRetry(TruffleCompilable compilable, TruffleCompilationTask task) { - onCompilationRetry0(IsolatedCompileContext.get().getClient(), contextHandle, IsolatedCompileClient.get().hand(task)); + onCompilationRetry0(IsolatedCompileContext.get().getClient(), contextHandle); } @CEntryPoint(include = CEntryPoint.NotIncludedAutomatically.class, publishAs = CEntryPoint.Publish.NotPublished) @@ -117,8 +117,7 @@ private static void onFailure0(@SuppressWarnings("unused") ClientIsolateThread c } @CEntryPoint(include = CEntryPoint.NotIncludedAutomatically.class, publishAs = CEntryPoint.Publish.NotPublished) - private static void onCompilationRetry0(@SuppressWarnings("unused") ClientIsolateThread client, ClientHandle contextHandle, - @SuppressWarnings("unused") ClientHandle task) { + private static void onCompilationRetry0(@SuppressWarnings("unused") ClientIsolateThread client, ClientHandle contextHandle) { IsolatedEventContext context = IsolatedCompileClient.get().unhand(contextHandle); context.listener.onCompilationRetry(context.compilable, context.task); }