Skip to content

Commit 5b2c7e4

Browse files
committed
[fix/#94] 매직넘버 삭제
1 parent f612ecb commit 5b2c7e4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/moplus/moplus_server/client/submit/service/ProblemsGetService.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,14 @@ public class ProblemsGetService {
3939
private final ProblemSetRepository problemSetRepository;
4040
private final ChildProblemSubmitRepository childProblemSubmitRepository;
4141
private final ChildProblemRepository childProblemRepository;
42+
private static final int MIN_MONTH = 1;
43+
private static final int MAX_MONTH = 12;
4244

4345
@Transactional(readOnly = true)
4446
public List<AllProblemGetResponse> getAllProblem(int year, int month) {
4547
Long memberId = 1L;
4648

47-
if (month < 1 || month > 12) {
49+
if (month < MIN_MONTH || month > MAX_MONTH) {
4850
throw new InvalidValueException(ErrorCode.INVALID_MONTH_ERROR);
4951
}
5052
LocalDate startDate = LocalDate.of(year, month, 1);

0 commit comments

Comments
 (0)