mirror of https://github.com/apache/maven.git
PR: MNG-1195
Submitted by: Edwin Punzalan Fix validation of generated HTML git-svn-id: https://svn.apache.org/repos/asf/maven/components/trunk@321335 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2df01ca71f
commit
d817a178ef
|
@ -186,7 +186,7 @@ public class CheckstyleReportGenerator
|
|||
sink.tableRow();
|
||||
|
||||
sink.tableCell();
|
||||
sink.link( "#" + filename );
|
||||
sink.link( "#" + filename.replace( '/', '.' ) );
|
||||
sink.text( filename );
|
||||
sink.link_();
|
||||
sink.tableCell_();
|
||||
|
@ -221,7 +221,7 @@ public class CheckstyleReportGenerator
|
|||
|
||||
sink.section1();
|
||||
sink.sectionTitle1();
|
||||
sink.anchor( file );
|
||||
sink.anchor( file.replace( '/', '.' ) );
|
||||
sink.text( file );
|
||||
sink.anchor_();
|
||||
sink.sectionTitle1_();
|
||||
|
|
Loading…
Reference in New Issue