Skip to content

Commit

Permalink
Use more general term for parallelism reporting.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Millson committed Apr 20, 2017
1 parent ad20999 commit 6312eda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/eclipselabs/garbagecat/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ public static void createReport(JvmRun jvmRun, String reportFileName) {
// Parallelism
if (jvmRun.getBadParallelismCount() > 0) {
// Parallelism
bufferedWriter.write("BAD PARALLELISM:" + System.getProperty("line.separator"));
bufferedWriter.write("LOW PARALLELISM:" + System.getProperty("line.separator"));
bufferedWriter.write("----------------------------------------" + System.getProperty("line.separator"));
bufferedWriter
.write("# Events: " + jvmRun.getBadParallelismCount() + System.getProperty("line.separator"));
Expand Down

0 comments on commit 6312eda

Please sign in to comment.