Skip to content

Commit

Permalink
🚨 Fix Codacy "switch without break" warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoineJT committed Nov 24, 2019
1 parent c1b87f7 commit fbdf44a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/github/antoinejt/jasc/ConsoleUI.java
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ private static void executeCommand(CalculatorEngine calculatorEngine, String inp
break;
case "quit":
System.exit(0);
break;
default: break;
}
}
Expand Down

0 comments on commit fbdf44a

Please sign in to comment.