File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/de/uzl/lied/mtbexporter/jobs Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -90,9 +90,9 @@ public void run() {
90
90
CsvMapper om = new CsvMapper ();
91
91
om .configOverride (Boolean .class ).setFormat (JsonFormat .Value .forShape (JsonFormat .Shape .NUMBER ));
92
92
CsvSchema s = om .schemaFor (Befund .class ).withHeader ().withColumnSeparator (';' )
93
- .withoutQuoteChar (). withLineSeparator ("\r \n " );
93
+ .withLineSeparator ("\r \n " );
94
94
CsvSchema s2 = om .schemaFor (BefTherapieoptionen .class ).withHeader ().withColumnSeparator (';' )
95
- .withoutQuoteChar (). withLineSeparator ("\r \n " );
95
+ .withLineSeparator ("\r \n " );
96
96
try (FileOutputStream fos = new FileOutputStream (".state" )) {
97
97
om .writer (s ).writeValue (new File (Settings .getOutputFolder (), filenameBefunde ), befunde );
98
98
om .writer (s2 ).writeValue (new File (Settings .getOutputFolder (), filenameTherapieoptionen ),
You can’t perform that action at this time.
0 commit comments