Skip to content

Commit eb0d3a0

Browse files
author
github-actions
committed
chore: Java 스타일 수정
1 parent 0244f4a commit eb0d3a0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@
66
import io.f1.backend.domain.quiz.dto.QuizListPageResponse;
77
import io.f1.backend.domain.quiz.dto.QuizQuestionListResponse;
88
import io.f1.backend.domain.quiz.dto.QuizUpdateRequest;
9-
109
import io.f1.backend.global.exception.CustomException;
1110
import io.f1.backend.global.exception.errorcode.CommonErrorCode;
12-
import io.f1.backend.global.exception.errorcode.QuizErrorCode;
11+
1312
import jakarta.validation.Valid;
1413

1514
import lombok.RequiredArgsConstructor;
@@ -82,10 +81,10 @@ public ResponseEntity<QuizListPageResponse> getQuizzes(
8281
@RequestParam(required = false) String title,
8382
@RequestParam(required = false) String creator) {
8483

85-
if(page <= 0) {
84+
if (page <= 0) {
8685
throw new CustomException(CommonErrorCode.INVALID_PAGINATION);
8786
}
88-
if(size <= 0 || size > 100) {
87+
if (size <= 0 || size > 100) {
8988
throw new CustomException(CommonErrorCode.INVALID_PAGINATION);
9089
}
9190

0 commit comments

Comments
 (0)