Fix prevMonthLength
X-SVN-Rev: 2820
This commit is contained in:
parent
060d086210
commit
ab5c42e298
@ -1912,7 +1912,7 @@ public class GregorianCalendar extends Calendar {
|
|||||||
* January), the day value will be ignored.
|
* January), the day value will be ignored.
|
||||||
*/
|
*/
|
||||||
private final int prevMonthLength(int month) {
|
private final int prevMonthLength(int month) {
|
||||||
return (month > 1) ? monthLength(month - 1) : 31;
|
return (month > 0) ? monthLength(month - 1) : 31;
|
||||||
}
|
}
|
||||||
|
|
||||||
private final int yearLength(int year) {
|
private final int yearLength(int year) {
|
||||||
|
@ -1912,7 +1912,7 @@ public class GregorianCalendar extends Calendar {
|
|||||||
* January), the day value will be ignored.
|
* January), the day value will be ignored.
|
||||||
*/
|
*/
|
||||||
private final int prevMonthLength(int month) {
|
private final int prevMonthLength(int month) {
|
||||||
return (month > 1) ? monthLength(month - 1) : 31;
|
return (month > 0) ? monthLength(month - 1) : 31;
|
||||||
}
|
}
|
||||||
|
|
||||||
private final int yearLength(int year) {
|
private final int yearLength(int year) {
|
||||||
|
Loading…
Reference in New Issue
Block a user