Skip to content

Commit

Permalink
Merge branch 'master' into feat/srr-connection-memory
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoerl authored Jun 7, 2024
2 parents 3a545ba + d3742de commit a2069a5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,7 +365,7 @@ private void writeIterationVehicleStats(String summarizeVehicles, String vehOcc,
try (var bw = getAppendingBufferedWriter("drt_detailed_distanceStats", ".csv")) {
if (!vheaderWritten) {
vheaderWritten = true;
bw.write("runId;iteration");
bw.write("runId" + delimiter + "iteration");
for (int i = 0; i <= maxcap; i++) {
bw.write(delimiter + i + " pax distance_m");
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>2.27.1</version>
<version>2.28.0</version>
</dependency>

<dependency>
Expand Down

0 comments on commit a2069a5

Please sign in to comment.