Skip to content

Commit

Permalink
Prepare for doxia 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
slawekjaranowski committed Jun 30, 2024
1 parent 6e958d6 commit 19419db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -360,11 +360,13 @@ protected void renderThirdPartySummaryTable(
boolean includeClassifier,
boolean includeType) {
sink.table();
sink.tableRows(null, false);
renderThirdPartySummaryTableHeader(includeScope, includeClassifier, includeType);
for (ThirdPartyDetails details : collection) {
renderThirdPartySummaryTableRow(details, includeScope, includeClassifier, includeType);
}
renderThirdPartySummaryTableHeader(includeScope, includeClassifier, includeType);
sink.tableRows_();
sink.table_();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,7 @@ private void renderSummaryTotalsTable(Collection<ThirdPartyDetails> allThirdPart
}
}
sink.table();
sink.tableRows(null, false);

sink.tableRow();
sink.tableCell();
Expand Down Expand Up @@ -204,6 +205,7 @@ private void renderSummaryTotalsTable(Collection<ThirdPartyDetails> allThirdPart
sinkCellText(getText("report.overview.numWithNoLicense"));
sinkCellText(Integer.toString(numWithNoLicense));
sink.tableRow_();
sink.tableRows_();
sink.table_();
}

Expand Down

0 comments on commit 19419db

Please sign in to comment.