Skip to content

Commit

Permalink
Fix accidental fall-through
Browse files Browse the repository at this point in the history
I hate C/Java case statements!
  • Loading branch information
brunchboy committed Nov 6, 2023
1 parent 51fddcd commit 665ea55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/deepsymmetry/bcj/Carabiner.java
Original file line number Diff line number Diff line change
Expand Up @@ -642,9 +642,9 @@ public void run() {

case "phase-at-time":
handlePhaseAtTime((Map<String, Object>) message.details);
break;

case "version":
//noinspection DataFlowIssue
handleVersion((String) message.details);
break;

Expand Down

0 comments on commit 665ea55

Please sign in to comment.