Skip to content

Commit 9ed7545

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent e7ddc83 commit 9ed7545

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

backend/src/main/java/io/f1/backend/domain/quiz/api/QuizController.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ public ResponseEntity<QuizListPageResponse> getQuizzes(
7272
@RequestParam(required = false) String title,
7373
@RequestParam(required = false) String creator) {
7474

75-
Pageable pageable = PageRequest.of(page - 1, size, Sort.by(Sort.Direction.DESC, "createdAt"));
75+
Pageable pageable =
76+
PageRequest.of(page - 1, size, Sort.by(Sort.Direction.DESC, "createdAt"));
7677
QuizListPageResponse quizzes = quizService.getQuizzes(title, creator, pageable);
7778

7879
return ResponseEntity.ok().body(quizzes);

0 commit comments

Comments
 (0)