Skip to content

Commit

Permalink
Merge pull request #254 from ASAP-as-soon-as-possible/hotfix/#253
Browse files Browse the repository at this point in the history
#253 [fix] 2023 -> 2024로 수정
  • Loading branch information
KWY0218 authored Jan 22, 2024
2 parents a3f0073 + 867e221 commit ae68377
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/asap/server/common/utils/DateUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

public class DateUtil {
public static LocalDate transformLocalDate(final String month, final String day) {
return LocalDate.of(2023, Integer.parseInt(month), Integer.parseInt(day));
return LocalDate.of(2024, Integer.parseInt(month), Integer.parseInt(day));
}

public static String getMonth(final LocalDate localDate) {
Expand Down

0 comments on commit ae68377

Please sign in to comment.