We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc238f4 commit 719d6f2Copy full SHA for 719d6f2
src/main/java/de/uzl/lied/mtbexporter/jobs/CheckFhirServer.java
@@ -90,7 +90,7 @@ public void run() {
90
CsvMapper om = new CsvMapper();
91
om.configOverride(Boolean.class).setFormat(JsonFormat.Value.forShape(JsonFormat.Shape.NUMBER));
92
CsvSchema s = om.schemaFor(Befund.class).withHeader().withColumnSeparator(';')
93
- .withoutQuoteChar().withLineSeparator("\r\n");
+ .withLineSeparator("\r\n");
94
CsvSchema s2 = om.schemaFor(BefTherapieoptionen.class).withHeader().withColumnSeparator(';')
95
.withoutQuoteChar().withLineSeparator("\r\n");
96
try (FileOutputStream fos = new FileOutputStream(".state")) {
0 commit comments