Skip to content

Commit d1a16ff

Browse files
committed
added missing breaks
1 parent 9134da3 commit d1a16ff

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/main/java/lol/hyper/toolstats/tools/config/ConfigUpdater.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,19 @@ public void updateConfig() {
5555
// Version 5 to 6
5656
Version6 version6 = new Version6(toolStats);
5757
version6.update();
58+
break;
5859
}
5960
case 6: {
6061
// Version 6 to 7
6162
Version7 version7 = new Version7(toolStats);
6263
version7.update();
64+
break;
6365
}
6466
case 7: {
6567
// Version 7 to 8
6668
Version8 version8 = new Version8(toolStats);
6769
version8.update();
70+
break;
6871
}
6972
}
7073
}

0 commit comments

Comments
 (0)