Skip to content
Snippets Groups Projects
Commit c38831f8 authored by Reiner Jung's avatar Reiner Jung
Browse files

Added one more decimal place for the HTML table output.

parent 8cfcd593
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,7 @@ public class GenerateHtmlTableStage extends AbstractTransformation<TableInformat
}
private StringBuilder addDouble(final StringBuilder cells, final Double value) {
return cells.append(String.format(" <td style=\"text-align: right;\">%1.2f</td>\n", value));
return cells.append(String.format(" <td style=\"text-align: right;\">%1.3f</td>\n", value));
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment