提交 fba8d50b authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Use NORMAL_DAYS_PER_MONTH in getMillis()

上级 d6533ac3
...@@ -525,7 +525,7 @@ public class DateTimeUtils { ...@@ -525,7 +525,7 @@ public class DateTimeUtils {
if (month == 2) { if (month == 2) {
maxDay = c.isLeapYear(year) ? 29 : 28; maxDay = c.isLeapYear(year) ? 29 : 28;
} else { } else {
maxDay = 30 + ((month + (month > 7 ? 1 : 0)) & 1); maxDay = NORMAL_DAYS_PER_MONTH[month];
} }
if (day < 1 || day > maxDay) { if (day < 1 || day > maxDay) {
throw e; throw e;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论