Skip to content

Commit 8233af8

Browse files
committed
use quote char
1 parent bc238f4 commit 8233af8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/de/uzl/lied/mtbexporter/jobs/CheckFhirServer.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ public void run() {
9090
CsvMapper om = new CsvMapper();
9191
om.configOverride(Boolean.class).setFormat(JsonFormat.Value.forShape(JsonFormat.Shape.NUMBER));
9292
CsvSchema s = om.schemaFor(Befund.class).withHeader().withColumnSeparator(';')
93-
.withoutQuoteChar().withLineSeparator("\r\n");
93+
.withLineSeparator("\r\n");
9494
CsvSchema s2 = om.schemaFor(BefTherapieoptionen.class).withHeader().withColumnSeparator(';')
95-
.withoutQuoteChar().withLineSeparator("\r\n");
95+
.withLineSeparator("\r\n");
9696
try (FileOutputStream fos = new FileOutputStream(".state")) {
9797
om.writer(s).writeValue(new File(Settings.getOutputFolder(), filenameBefunde), befunde);
9898
om.writer(s2).writeValue(new File(Settings.getOutputFolder(), filenameTherapieoptionen),

0 commit comments

Comments
 (0)