This is an automated email from the ASF dual-hosted git repository.

hboutemy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-dist-tool.git


The following commit(s) were added to refs/heads/master by this push:
     new 4a88d44  fixed one missed Doxia 2 update
4a88d44 is described below

commit 4a88d44e74bd331f7732dd333c16b59fb4e061fd
Author: HervĂ© Boutemy <[email protected]>
AuthorDate: Sat Jun 10 09:49:53 2023 +0200

    fixed one missed Doxia 2 update
---
 .../org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java    | 3 +++
 1 file changed, 3 insertions(+)

diff --git 
a/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java 
b/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
index f4b1cf0..c9f8db4 100644
--- 
a/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
+++ 
b/src/main/java/org/apache/maven/dist/tools/index/DistCheckIndexPageReport.java
@@ -231,6 +231,7 @@ public class DistCheckIndexPageReport extends 
AbstractDistCheckReport {
             sink.sectionTitle2_();
 
             sink.table();
+            sink.tableRows(null, true);
             sink.tableRow();
             sink.tableHeaderCell();
             sink.rawText("Component (" + indexPageResults.size() + ")");
@@ -252,6 +253,8 @@ public class DistCheckIndexPageReport extends 
AbstractDistCheckReport {
             for (CheckIndexPageResult csr : indexPageResults) {
                 reportLine(sink, csr, indexPage.containsDate);
             }
+
+            sink.tableRows_();
             sink.table_();
         }
 

Reply via email to