Skip to content

Commit

Permalink
change fraction field to micros from millis, pass test
Browse files Browse the repository at this point in the history
  • Loading branch information
auden-woolfson committed Sep 19, 2024
1 parent 284540f commit b6a3149
Showing 1 changed file with 1 addition and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -157,16 +157,7 @@ public static String printDate(int days)
.appendValue(ChronoField.SECOND_OF_MINUTE, 2)
.optionalStart()
.appendLiteral(".")
//.optionalStart()
//.appendValue(ChronoField.MILLI_OF_SECOND, 9)
//.optionalEnd()
//.optionalStart()
//.appendValue(ChronoField.MILLI_OF_SECOND, 6)
//.optionalEnd()
//.optionalStart()
//.appendValue(ChronoField.MILLI_OF_SECOND, 3)
//.optionalEnd()
.appendValue(ChronoField.MILLI_OF_SECOND, 1, 9, SignStyle.NORMAL)
.appendValue(ChronoField.MICRO_OF_SECOND, 1, 9, SignStyle.NORMAL)
.optionalEnd()
.optionalStart()
.appendLiteral(" ")
Expand Down

0 comments on commit b6a3149

Please sign in to comment.