This commit is contained in:
Gary Gregory 2024-01-15 09:46:33 -05:00
parent 64f471a31f
commit 06d187c8ed
1 changed files with 1 additions and 1 deletions

View File

@ -976,7 +976,7 @@ public class FastDatePrinter implements DatePrinter, Serializable {
int digit = 0;
while (value != 0) {
work[digit++] = (char) (value % 10 + '0');
value = value / 10;
value /= 10;
}
// pad with zeros