Skip to content

Commit

Permalink
#253 [fix] 2023 -> 2024로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
KWY0218 committed Jan 22, 2024
1 parent a3f0073 commit 867e221
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 867e221

Please sign in to comment.