Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8276220: Reduce excessive allocations in DateTimeFormatter #6188

Closed
wants to merge 10 commits into from
Original file line number Diff line number Diff line change
@@ -3262,10 +3262,12 @@ public boolean format(DateTimePrintContext context, StringBuilder buf) {
// While values of ChronoField.NANO_OF_SECOND should be in the range
// [0-999999999], we can't assume that holds for any custom Temporal
if (!field.range().isValidIntValue(value)) {
if (fallback == null) {
fallback = new FractionPrinterParser(field, minWidth, maxWidth, decimalPoint, subsequentWidth);
var fallbackFormatter = fallback;
if (fallbackFormatter == null) {
fallbackFormatter = new FractionPrinterParser(field, minWidth, maxWidth, decimalPoint, subsequentWidth);
fallback = fallbackFormatter;
}
return fallback.format(context, buf);
return fallbackFormatter.format(context, buf);
}
int val = value.intValue();
DecimalStyle decimalStyle = context.getDecimalStyle();