Skip to content
This repository has been archived by the owner on Apr 14, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1276 from finos/1275-json-date-format
Browse files Browse the repository at this point in the history
fix(#1275): make json writer use same date format as csv writer
  • Loading branch information
afroggattsl authored Sep 2, 2019
2 parents 01ee3a1 + 671812d commit 252666c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
import java.util.Map;

class JsonDataSetWriter implements DataSetWriter {
private static final DateTimeFormatter standardDateFormat = DateTimeFormatter.ofPattern("dd-MM-yyyy HH:mm:ss");

private static final DateTimeFormatter standardDateFormat = DateTimeFormatter.ISO_OFFSET_DATE_TIME;

private final SequenceWriter writer;
private final ProfileFields fields;
Expand Down

0 comments on commit 252666c

Please sign in to comment.