Skip to content

Commit

Permalink
Merge pull request #435 from nomnom88/patch-1
Browse files Browse the repository at this point in the history
Use day of month instead of day of year in default format string
  • Loading branch information
jamezp authored Oct 11, 2023
2 parents 3a55c5c + 5cc4444 commit f752743
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,7 @@ public static FormatStep dateFormatStep(final TimeZone timeZone, final String fo
final boolean truncateBeginning, final int maximumWidth) {
return new JustifyingFormatStep(leftJustify, minimumWidth, truncateBeginning, maximumWidth) {
final DateTimeFormatter dtf = DateTimeFormatter
.ofPattern(formatString == null ? "yyyy-MM-DD HH:mm:ss,SSS" : formatString);
.ofPattern(formatString == null ? "yyyy-MM-dd HH:mm:ss,SSS" : formatString);

public ItemType getItemType() {
return ItemType.DATE;
Expand Down

0 comments on commit f752743

Please sign in to comment.