Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jenno-verdonck authored Apr 18, 2024
1 parent 984f38f commit 4f90e0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/main/org/deidentifier/arx/io/CSVDataInput.java
Original file line number Diff line number Diff line change
Expand Up @@ -587,6 +587,7 @@ private CsvParserSettings createSettings(final char delimiter, final char quote,
format.setComment('\0');

CsvParserSettings settings = new CsvParserSettings();
settings.setSkipEmptyLines(false);
settings.setEmptyValue("");
settings.setNullValue("");
settings.setFormat(format);
Expand Down
1 change: 1 addition & 0 deletions src/main/org/deidentifier/arx/io/CSVDataOutput.java
Original file line number Diff line number Diff line change
Expand Up @@ -409,6 +409,7 @@ private CsvWriterSettings createSettings(final char delimiter, final char quote,
format.setNormalizedNewline(CSVSyntax.getNormalizedLinebreak(linebreak));

CsvWriterSettings settings = new CsvWriterSettings();
settings.setSkipEmptyLines(false);
settings.setEmptyValue("");
settings.setNullValue("");
settings.setFormat(format);
Expand Down

0 comments on commit 4f90e0d

Please sign in to comment.