Skip to content

Commit

Permalink
fix: elapsed rate: remove comma
Browse files Browse the repository at this point in the history
  • Loading branch information
hishidama committed May 28, 2024
1 parent 91bcd7b commit 8aa171e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ public String elapsedRate() {
return "-";
}
double value = elapsedMillis / 1000d;
return String.format("%,.2f", value / base * 100);
return String.format("%.2f", value / base * 100);
}

public void setCompareBaseRecord(BatchRecordPart compareBaseRecord) {
Expand Down

0 comments on commit 8aa171e

Please sign in to comment.