Index: /home/cliffano/dev/eclipse-workspace/findbugs-maven-plugin/src/main/java/org/codehaus/mojo/findbugs/Reporter.java =================================================================== --- /home/cliffano/dev/eclipse-workspace/findbugs-maven-plugin/src/main/java/org/codehaus/mojo/findbugs/Reporter.java (revision 4558) +++ /home/cliffano/dev/eclipse-workspace/findbugs-maven-plugin/src/main/java/org/codehaus/mojo/findbugs/Reporter.java (working copy) @@ -393,7 +393,6 @@ } // close the report, write it - this.sink.section1_(); this.sink.body_(); this.sink.flush(); this.sink.close(); @@ -628,11 +627,11 @@ if ( pLine == null ) { - hyperlink = "" + pLineNumber + ""; + hyperlink = "" + pLineNumber + ""; } else { - hyperlink = "" + pLineNumber + ""; + hyperlink = "" + pLineNumber + ""; } return hyperlink; @@ -899,6 +898,8 @@ */ protected void printSummary() { + this.sink.section1(); + // the summary section this.sink.sectionTitle1(); this.sink.text( this.getSummaryTitle() ); @@ -954,7 +955,6 @@ this.sink.tableRow_(); this.sink.table_(); - this.sink.paragraph_(); this.sink.section1_(); } @@ -963,6 +963,8 @@ */ protected void printFilesSummary() { + this.sink.section1(); + // the Files section this.sink.sectionTitle1(); this.sink.text( this.getFilesTitle() ); @@ -1017,7 +1019,8 @@ this.printFilesSummaryLine( classBugs ); this.sink.table_(); - + + this.sink.section1_(); } protected void printFilesSummaryLine( int classBugs )