MonthDateFormat BUG?

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
olbrich
Posts: 19
Joined: Fri Dec 27, 2013 9:39 am
antibot: No, of course not.

MonthDateFormat BUG?

Post by olbrich » Tue Dec 08, 2020 11:44 pm

public MonthDateFormat(TimeZone zone, Locale locale, int chars,
boolean showYearForJan, boolean showYearForDec) {
this(zone, locale, chars, new boolean[] {showYearForJan, false, false,
false, false, false, false, false, false, false, false, false,
showYearForDec}, new SimpleDateFormat("yy"));
}

There are 13 boolean entries in the array.

Locked