removed extra CR/LF

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@61 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2002-06-25 16:39:44 +00:00
parent 03e802a76f
commit 8c4445d489

View File

@@ -45,8 +45,10 @@ public class Report {
}
for (Iterator iterator = violations.iterator(); iterator.hasNext();) {
RuleViolation rv = (RuleViolation) iterator.next();
if (buf.length() != 0) {
buf.append(System.getProperty("line.separator"));
}
buf.append(filename + ":" + rv.getText());
buf.append(System.getProperty("line.separator"));
}
}
return buf.toString();