Skip to content

Commit

Permalink
Merge pull request #336 from ASAP-as-soon-as-possible/feat/#335
Browse files Browse the repository at this point in the history
#335 [fix] 2024 -> 2025로 수정
  • Loading branch information
KWY0218 authored Jan 1, 2025
2 parents 3aacc06 + 9f79c54 commit 5ddec68
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(2024, Integer.parseInt(month), Integer.parseInt(day));
return LocalDate.of(2025, Integer.parseInt(month), Integer.parseInt(day));
}

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

0 comments on commit 5ddec68

Please sign in to comment.