Remove punctuation in Exception messages.

Closes #4079.
This commit is contained in:
John Blum
2022-06-08 14:54:38 -07:00
parent 01656db002
commit f15fd2a418
258 changed files with 1680 additions and 1680 deletions

View File

@@ -322,7 +322,7 @@ public class AbstractMicrobenchmark {
try {
ResultsWriter.forUri(uri).write(results);
} catch (Exception e) {
System.err.println(String.format("Cannot save benchmark results to '%s'. Error was %s.", uri, e));
System.err.println(String.format("Cannot save benchmark results to '%s'; Error was %s", uri, e));
}
}
}