Skip to content

Commit

Permalink
Remove unnecessary cast in jvmtiGetVirtualThread
Browse files Browse the repository at this point in the history
Related: eclipse-openj9#16787

Signed-off-by: Babneet Singh <sbabneet@ca.ibm.com>
  • Loading branch information
babsingh committed Mar 1, 2023
1 parent 8078ad6 commit 9c30d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/jvmti/jvmtiExtensionMechanism.c
Original file line number Diff line number Diff line change
Expand Up @@ -3812,7 +3812,7 @@ jvmtiGetVirtualThread(jvmtiEnv* jvmti_env, ...)
) {
rv_virtual_thread = (jthread)vm->internalVMFunctions->j9jni_createLocalRef(
(JNIEnv *)currentThread,
(j9object_t)threadObject);
threadObject);
}
releaseVMThread(currentThread, targetThread, carrier_thread);
}
Expand Down

0 comments on commit 9c30d2e

Please sign in to comment.