Skip to content

Commit 9ec0321

Browse files
committed
make checkstyle happy
1 parent 877f1f6 commit 9ec0321

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/main/java/org/developerden/codosseum/service/game/GameCommand.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ record SetChallengeInfo(UUID gameId, ChallengeInfo info) implements GameCommand
6767
/**
6868
* Command to start a new round in a game.
6969
* The game phase should be {@link GamePhase#IN_PROGRESS} for this to have any effect.
70+
*
7071
* @param gameId the id of the game to start the round for
7172
*/
7273
record StartRound(UUID gameId) implements GameCommand {

src/main/java/org/developerden/codosseum/service/game/event/InternalGameEvent.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,7 @@
1515
package org.developerden.codosseum.service.game.event;
1616

1717
import java.time.Duration;
18-
import java.util.List;
1918
import java.util.UUID;
20-
2119
import javax.annotation.Nonnull;
2220
import org.developerden.codosseum.challenges.client.model.ChallengeInfo;
2321
import org.developerden.codosseum.event.GameEvent;

src/main/java/org/developerden/codosseum/service/game/process/ChallengeSetHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import org.slf4j.LoggerFactory;
2525

2626
/**
27-
* Listens for challenges being set and
27+
* Listens for challenges being set for a game, and starts the round when they are.
2828
*/
2929
@Singleton
3030
public class ChallengeSetHandler implements ApplicationEventListener<InternalGameEvent> {

0 commit comments

Comments
 (0)