Skip to content

Commit

Permalink
remove superfluous delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
mrieser committed Oct 13, 2023
1 parent 5899b40 commit 0119ae4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void addIteration(int iteration, IdMap<Person, Plan> map) {
log.info("(and teleported legs whose route contains a distance.)");// TODO: still valid?

try {
this.out.write(iteration + this.delimiter + legStats.getAverage() + this.delimiter + tripStats.getAverage() + this.delimiter + "\n");
this.out.write(iteration + this.delimiter + legStats.getAverage() + this.delimiter + tripStats.getAverage() + "\n");
this.out.flush();
} catch (IOException e) {
e.printStackTrace();
Expand Down

0 comments on commit 0119ae4

Please sign in to comment.