File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed
backend/src/main/java/io/f1/backend/domain/game Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 11package io .f1 .backend .domain .game .app ;
22
3-
43import static io .f1 .backend .domain .game .mapper .RoomMapper .*;
54import static io .f1 .backend .domain .game .websocket .WebSocketUtils .getDestination ;
65import static io .f1 .backend .domain .quiz .mapper .QuizMapper .toGameStartResponse ;
1211import io .f1 .backend .domain .game .dto .response .PlayerListResponse ;
1312import io .f1 .backend .domain .game .event .GameCorrectAnswerEvent ;
1413import 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-
1914import io .f1 .backend .domain .game .event .RoomUpdatedEvent ;
2015import io .f1 .backend .domain .game .model .Player ;
2116import 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 ;
Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments