Skip to content

Commit

Permalink
TimestampUtil uses yyyy instead of YYYY for date time formatter. Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
rpalcolea committed Jan 6, 2021
1 parent bcb0e3d commit 9ed8b22
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import java.time.format.DateTimeFormatter
class TimestampUtil {

private static DateTimeFormatter timestampDateFormat = DateTimeFormatter
.ofPattern("YYYYMMddHHmm")
.ofPattern("yyyyMMddHHmm")
.withZone(ZoneOffset.UTC)

static String getUTCFormattedTimestamp() {
Expand Down

0 comments on commit 9ed8b22

Please sign in to comment.