mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-13 08:53:20 +00:00
ICU-5466 Fix ChineseCalendar#toString() crash problem
X-SVN-Rev: 22377
This commit is contained in:
parent
7951431096
commit
6e071a5cc9
1 changed files with 1 additions and 1 deletions
|
@ -3881,7 +3881,7 @@ public abstract class Calendar implements Serializable, Cloneable, Comparable {
|
|||
buffer.append(",minimalDaysInFirstWeek=");
|
||||
buffer.append(minimalDaysInFirstWeek);
|
||||
for (int i=0; i<fields.length; ++i) {
|
||||
buffer.append(',').append(FIELD_NAME[i]).append('=');
|
||||
buffer.append(',').append(fieldName(i)).append('=');
|
||||
buffer.append(isSet(i) ? String.valueOf(fields[i]) : "?");
|
||||
}
|
||||
buffer.append(']');
|
||||
|
|
Loading…
Add table
Reference in a new issue