Removed unnecessary throw

This commit is contained in:
Bas de Jong
2026-01-12 08:53:00 +01:00
parent 07a3e22dc9
commit 7ce000c795

View File

@@ -32,7 +32,7 @@ public class Tournament {
shuffler = builder.shuffler;
}
public void run(String gameType) throws IllegalArgumentException {
public void run(String gameType) {
Arrays.stream(players).forEach(e -> {
matchMaker.addPlayer(e);