Skip to content

Commit

Permalink
Merge pull request #16809 from babsingh/remove_cast
Browse files Browse the repository at this point in the history
Remove unnecessary cast in jvmtiGetVirtualThread
  • Loading branch information
keithc-ca authored Mar 2, 2023
2 parents 8078ad6 + 9c30d2e commit 6cddd76
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 6cddd76

Please sign in to comment.