Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
Changed to 1 decimal place for RT reporting
  • Loading branch information
danielgeiszler committed Mar 8, 2021
1 parent 8535cc4 commit 311cda6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public String toString() {
tmean = Double.NaN;
if(deltart.getVariance() == 0.0)
tvar = Double.NaN;
sb.append(String.format("\t%.0f\t%.0f", tmean, tvar));
sb.append(String.format("\t%.1f\t%.0f", tmean, tvar));

return sb.toString();
}
Expand Down

0 comments on commit 311cda6

Please sign in to comment.