Skip to content

Commit

Permalink
Fixed parsing of csv file
Browse files Browse the repository at this point in the history
Signed-off-by: hibo98 <niklasmerkelt@mail.de>
  • Loading branch information
hibo98 committed Apr 27, 2018
1 parent 3381283 commit f5aef47
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ protected Boolean doInBackground(InputStream... inputStreams) {
try {
CSVFormat format = CSVFormat.DEFAULT;
if (!allergy) {
format.withDelimiter(';')
format = format.withDelimiter(';')
.withSkipHeaderRecord()
.withHeader("WT", "KW", "Klasse", "XBA", "Name", "Gericht");
}
Expand Down

0 comments on commit f5aef47

Please sign in to comment.