We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f612ecb commit 5b2c7e4Copy full SHA for 5b2c7e4
src/main/java/com/moplus/moplus_server/client/submit/service/ProblemsGetService.java
@@ -39,12 +39,14 @@ public class ProblemsGetService {
39
private final ProblemSetRepository problemSetRepository;
40
private final ChildProblemSubmitRepository childProblemSubmitRepository;
41
private final ChildProblemRepository childProblemRepository;
42
+ private static final int MIN_MONTH = 1;
43
+ private static final int MAX_MONTH = 12;
44
45
@Transactional(readOnly = true)
46
public List<AllProblemGetResponse> getAllProblem(int year, int month) {
47
Long memberId = 1L;
48
- if (month < 1 || month > 12) {
49
+ if (month < MIN_MONTH || month > MAX_MONTH) {
50
throw new InvalidValueException(ErrorCode.INVALID_MONTH_ERROR);
51
}
52
LocalDate startDate = LocalDate.of(year, month, 1);
0 commit comments