Skip to content

Commit

Permalink
Remove fall through comments from case statements with no code
Browse files Browse the repository at this point in the history
Related: eclipse-openj9#18421 (comment)

Signed-off-by: Babneet Singh <[email protected]>
  • Loading branch information
babsingh committed Nov 10, 2023
1 parent f4501d1 commit 9b9a74a
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions runtime/jvmti/jvmtiHelpers.c
Original file line number Diff line number Diff line change
Expand Up @@ -858,13 +858,9 @@ getVirtualThreadState(J9VMThread *currentThread, jthread thread)
break;
}
case JVMTI_VTHREAD_STATE_RUNNABLE:
/* Fall Through */
case JVMTI_VTHREAD_STATE_RUNNING:
/* Fall Through */
case JVMTI_VTHREAD_STATE_PARKING:
/* Fall Through */
case JVMTI_VTHREAD_STATE_TIMED_PARKING:
/* Fall Through */
case JVMTI_VTHREAD_STATE_YIELDING:
rc = JVMTI_JAVA_LANG_THREAD_STATE_RUNNABLE;
break;
Expand Down

0 comments on commit 9b9a74a

Please sign in to comment.