File tree Expand file tree Collapse file tree 1 file changed +1
-6
lines changed
backend/src/main/java/io/f1/backend/domain/game/app Expand file tree Collapse file tree 1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -84,9 +84,6 @@ public void gameStart(Long roomId, UserPrincipal principal) {
8484
8585 timerService .startTimer (room , START_DELAY );
8686
87- PlayerListResponse playerListResponse = toPlayerListResponse (room );
88- log .info (playerListResponse .toString ());
89-
9087 messageSender .sendBroadcast (
9188 destination , MessageType .GAME_START , toGameStartResponse (questions ));
9289 messageSender .sendBroadcast (
@@ -212,9 +209,7 @@ public void handlePlayerReady(Long roomId, String sessionId) {
212209
213210 String destination = getDestination (roomId );
214211
215- PlayerListResponse playerListResponse = toPlayerListResponse (room );
216- log .info (playerListResponse .toString ());
217- messageSender .sendBroadcast (destination , MessageType .PLAYER_LIST , playerListResponse );
212+ messageSender .sendBroadcast (destination , MessageType .PLAYER_LIST , toPlayerListResponse (room ));
218213 }
219214
220215 public void changeGameSetting (
You can’t perform that action at this time.
0 commit comments