Skip to content

Commit

Permalink
feat : 주석 제거 (CC-168)
Browse files Browse the repository at this point in the history
  • Loading branch information
j2noo committed Aug 20, 2024
1 parent cc0e85d commit 25bc17c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public HintResponseDto getHint(HintRequestDto req) {
throw new FindingGameException(ErrorCode.INVALID_FINDING_GAME_HINT);
}
PositionDto hintPositionDto = PositionDto.builder()
.positionX(findingGameAnswers.get(0).getPositionX()) //get(0) 개별로다
.positionX(findingGameAnswers.get(0).getPositionX())
.positionY(findingGameAnswers.get(0).getPositionY())
.build();
return HintResponseDto.builder()
Expand Down

0 comments on commit 25bc17c

Please sign in to comment.