Skip to content

Commit db0e8ff

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent f7ded66 commit db0e8ff

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

backend/src/main/java/io/f1/backend/domain/quiz/app/QuizService.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,12 +189,11 @@ public QuizListPageResponse getQuizzes(String title, String creator, Pageable pa
189189

190190
return toQuizListPageResponse(quizListResponses);
191191
}
192-
192+
193193
@Transactional(readOnly = true)
194194
public Quiz getQuizById(Long quizId) {
195195
return quizRepository
196196
.findById(quizId)
197197
.orElseThrow(() -> new RuntimeException("E404002: 존재하지 않는 퀴즈입니다."));
198-
199198
}
200199
}

0 commit comments

Comments
 (0)