Skip to content

Commit

Permalink
reverted back to CSVFormat.DEFAULT.withHeader(csvHeader)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremycook123 committed May 1, 2023
1 parent ea704e7 commit c767266
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ public ResponseEntity<Resource> exportCSV() {

var csvPrinter = new CSVPrinter(
new PrintWriter(out),
CSVFormat.DEFAULT
CSVFormat.DEFAULT.withHeader(csvHeader)
);
) {
for (var record : csvBody) {
Expand Down

0 comments on commit c767266

Please sign in to comment.