Skip to content
Snippets Groups Projects
Commit c379ce67 authored by Florian Angerer's avatar Florian Angerer
Browse files

Added details column to distinct problems table.

parent 9b8e2e95
No related branches found
No related tags found
No related merge requests found
......@@ -151,7 +151,8 @@ public class HTMLDumper extends AbstractDumper {
Tag table = builder.table(builder.tr(
builder.th("Problem"),
builder.th("Problem Count")));
builder.th("Problem Count"),
builder.th("Representitive Message")));
int i = 0;
for (ProblemContent problem : collect) {
......@@ -161,7 +162,8 @@ public class HTMLDumper extends AbstractDumper {
int n = groupByPkg.get(problem).size();
Tag tableRow = builder.tr(
builder.td(builder.a(pkgFileName, problem.representitive.getSummary())),
builder.td(Integer.toString(n)));
builder.td(Integer.toString(n)),
builder.td(problem.representitive.getDetails()));
table.addChild(tableRow);
}
return table;
......
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