Skip to content

Commit

Permalink
change stopWatch output file to avoid duplicate header column
Browse files Browse the repository at this point in the history
  • Loading branch information
Tobias Kohl committed Feb 1, 2024
1 parent 4e57a60 commit 92c35c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ public void writeSeparatedFile(final String filename, final String delimiter) {
try (BufferedWriter writer = IOUtils.getBufferedWriter(filename)) {

// print header
writer.write("iteration");
writer.write("Iteration");
for (String identifier : this.identifiers) {
writer.write(delimiter);
writer.write(identifier);
Expand Down

0 comments on commit 92c35c6

Please sign in to comment.