File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed
src/main/java/org/apache/maven/plugins/checkstyle Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -263,6 +263,7 @@ private void doRulesSummary( CheckstyleResults results )
263263 sink .sectionTitle1_ ();
264264
265265 sink .table ();
266+ sink .tableRows ( null , false );
266267
267268 sink .tableRow ();
268269 sink .tableHeaderCell ();
@@ -303,6 +304,7 @@ private void doRulesSummary( CheckstyleResults results )
303304 sink .tableRow_ ();
304305 }
305306
307+ sink .tableRows_ ();
306308 sink .table_ ();
307309
308310 sink .section1_ ();
@@ -478,6 +480,7 @@ private void doSeveritySummary( CheckstyleResults results )
478480 sink .sectionTitle1_ ();
479481
480482 sink .table ();
483+ sink .tableRows ( null , false );
481484
482485 sink .tableRow ();
483486 sink .tableHeaderCell ();
@@ -512,6 +515,7 @@ private void doSeveritySummary( CheckstyleResults results )
512515 sink .tableCell_ ();
513516 sink .tableRow_ ();
514517
518+ sink .tableRows_ ();
515519 sink .table_ ();
516520
517521 sink .section1_ ();
@@ -525,6 +529,7 @@ private void doFilesSummary( CheckstyleResults results )
525529 sink .sectionTitle1_ ();
526530
527531 sink .table ();
532+ sink .tableRows ( null , false );
528533
529534 sink .tableRow ();
530535 sink .tableHeaderCell ();
@@ -577,7 +582,9 @@ private void doFilesSummary( CheckstyleResults results )
577582 sink .tableRow_ ();
578583 }
579584
585+ sink .tableRows_ ();
580586 sink .table_ ();
587+
581588 sink .section1_ ();
582589 }
583590
@@ -611,6 +618,8 @@ private void doDetails( CheckstyleResults results )
611618 sink .sectionTitle_ ( Sink .SECTION_LEVEL_2 );
612619
613620 sink .table ();
621+ sink .tableRows ( null , false );
622+
614623 sink .tableRow ();
615624 sink .tableHeaderCell ();
616625 sink .text ( bundle .getString ( "report.checkstyle.column.severity" ) );
@@ -631,7 +640,9 @@ private void doDetails( CheckstyleResults results )
631640
632641 doFileEvents ( violations , file );
633642
643+ sink .tableRows_ ();
634644 sink .table_ ();
645+
635646 sink .section2_ ();
636647 }
637648
You can’t perform that action at this time.
0 commit comments