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:
Brett Leslie Porter 2005-10-15 13:29:00 +00:00
parent 2df01ca71f
commit d817a178ef
1 changed files with 2 additions and 2 deletions

View File

@ -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_();