ICU-11257 Fix a ChineseCalendar constructor problem.

X-SVN-Rev: 36502
This commit is contained in:
Yoshito Umaoka 2014-09-15 04:06:31 +00:00
parent d5c8fa0e9f
commit 4426b0e313

View File

@ -233,7 +233,7 @@ public class ChineseCalendar extends Calendar {
*/
public ChineseCalendar(int era, int year, int month, int isLeapMonth, int date)
{
this(era, year, month, isLeapMonth, 0, 0, 0);
this(era, year, month, isLeapMonth, date, 0, 0, 0);
}
/**