From fedaa872022538ee058a34d35b698f5e43d43691 Mon Sep 17 00:00:00 2001 From: Jona Walpert Date: Tue, 12 May 2026 16:02:39 +0200 Subject: [PATCH] Style: Fixed spotless error --- .../TaskbarControllerInputValidationTest.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/test/java/ch/unibas/dmi/dbis/cs108/casono/client/ui/gameui/gameuicomponents/TaskbarControllerInputValidationTest.java b/src/test/java/ch/unibas/dmi/dbis/cs108/casono/client/ui/gameui/gameuicomponents/TaskbarControllerInputValidationTest.java index bc2cd31..4751205 100644 --- a/src/test/java/ch/unibas/dmi/dbis/cs108/casono/client/ui/gameui/gameuicomponents/TaskbarControllerInputValidationTest.java +++ b/src/test/java/ch/unibas/dmi/dbis/cs108/casono/client/ui/gameui/gameuicomponents/TaskbarControllerInputValidationTest.java @@ -14,10 +14,10 @@ class TaskbarControllerInputValidationTest { void updateLogicRunsWithoutCrash() { GameState state = new GameState(); - state.players = List.of( - new Player(PlayerId.of("me"), 20000), - new Player(PlayerId.of("other"), 20000) - ); + state.players = + List.of( + new Player(PlayerId.of("me"), 20000), + new Player(PlayerId.of("other"), 20000)); state.phase = "PREFLOP"; state.currentBet = 200; @@ -31,7 +31,6 @@ class TaskbarControllerInputValidationTest { } static class DummyController { - void update(GameState state, PlayerId id) { - } + void update(GameState state, PlayerId id) {} } }