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
Branches
No related tags found
No related merge requests found
...@@ -151,7 +151,8 @@ public class HTMLDumper extends AbstractDumper { ...@@ -151,7 +151,8 @@ public class HTMLDumper extends AbstractDumper {
Tag table = builder.table(builder.tr( Tag table = builder.table(builder.tr(
builder.th("Problem"), builder.th("Problem"),
builder.th("Problem Count"))); builder.th("Problem Count"),
builder.th("Representitive Message")));
int i = 0; int i = 0;
for (ProblemContent problem : collect) { for (ProblemContent problem : collect) {
...@@ -161,7 +162,8 @@ public class HTMLDumper extends AbstractDumper { ...@@ -161,7 +162,8 @@ public class HTMLDumper extends AbstractDumper {
int n = groupByPkg.get(problem).size(); int n = groupByPkg.get(problem).size();
Tag tableRow = builder.tr( Tag tableRow = builder.tr(
builder.td(builder.a(pkgFileName, problem.representitive.getSummary())), 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); table.addChild(tableRow);
} }
return table; return table;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment