Skip to content

Commit 916f8c4

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent 4a303e9 commit 916f8c4

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

backend/src/main/java/io/f1/backend/domain/game/app/GameService.java

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package io.f1.backend.domain.game.app;
22

3-
43
import static io.f1.backend.domain.game.mapper.RoomMapper.*;
54
import static io.f1.backend.domain.game.websocket.WebSocketUtils.getDestination;
65
import static io.f1.backend.domain.quiz.mapper.QuizMapper.toGameStartResponse;
@@ -12,10 +11,6 @@
1211
import io.f1.backend.domain.game.dto.response.PlayerListResponse;
1312
import io.f1.backend.domain.game.event.GameCorrectAnswerEvent;
1413
import io.f1.backend.domain.game.event.GameTimeoutEvent;
15-
16-
import io.f1.backend.domain.game.dto.request.GameSettingChanger;
17-
import io.f1.backend.domain.game.dto.response.PlayerListResponse;
18-
1914
import io.f1.backend.domain.game.event.RoomUpdatedEvent;
2015
import io.f1.backend.domain.game.model.Player;
2116
import io.f1.backend.domain.game.model.Room;
@@ -49,7 +44,6 @@ public class GameService {
4944
private static final int CONTINUE_DELAY = 3;
5045
private static final String NONE_CORRECT_USER = "";
5146

52-
5347
private final QuizService quizService;
5448
private final RoomService roomService;
5549
private final TimerService timerService;

backend/src/main/java/io/f1/backend/domain/game/model/Player.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public void increaseCorrectCount() {
3535
public void initializeCorrectCount() {
3636
correctCount = 0;
3737
}
38-
38+
3939
public void updateState(ConnectionState newState) {
4040
state = newState;
4141
}

0 commit comments

Comments
 (0)