forked from phoedos/pmd
bug fix from previous commit
git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4815 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
@ -22,12 +22,13 @@ public class VBHTMLRenderer extends AbstractRenderer {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
StringBuffer sb = new StringBuffer(header());
|
StringBuffer sb = new StringBuffer();
|
||||||
String filename = null;
|
String filename = null;
|
||||||
String lineSep = PMD.EOL;
|
String lineSep = PMD.EOL;
|
||||||
|
|
||||||
boolean colorize = false;
|
boolean colorize = false;
|
||||||
|
|
||||||
|
writer.write(header());
|
||||||
for (Iterator iter = report.iterator(); iter.hasNext();) {
|
for (Iterator iter = report.iterator(); iter.hasNext();) {
|
||||||
sb.setLength(0);
|
sb.setLength(0);
|
||||||
IRuleViolation rv = (IRuleViolation) iter.next();
|
IRuleViolation rv = (IRuleViolation) iter.next();
|
||||||
|
Reference in New Issue
Block a user