提交 5ba9d11d authored 作者: Evgenij Ryazanov's avatar Evgenij Ryazanov

Inline local variable in incrementDateValue()

上级 0a5a9961
...@@ -1339,14 +1339,13 @@ public class DateTimeUtils { ...@@ -1339,14 +1339,13 @@ public class DateTimeUtils {
if (day < getDaysInMonth(year, month)) { if (day < getDaysInMonth(year, month)) {
return dateValue + 1; return dateValue + 1;
} }
day = 1;
if (month < 12) { if (month < 12) {
month++; month++;
} else { } else {
month = 1; month = 1;
year++; year++;
} }
return dateValue(year, month, day); return dateValue(year, month, 1);
} }
/** /**
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论