Fixed CSVRenderer - had flipped line and priority columns

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@4585 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Allan Caplan
2006-10-06 17:31:09 +00:00
parent b78fa09526
commit c6471f8d7c
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ New rules:
SummaryHTML Report changes from Brent Fisher - now contains linePrefix to support source output from javadoc using "linksource"
Fixed bug 1570915 - AvoidRethrowingException no longer reports a false positive for certain nested exceptions.
Fixed bug 1571324 - UselessStringValueOf no longer reports a false positive for additive expressions.
Fixed CSVRenderer - had flipped line and priority columns
October 4, 2006 - 3.8:
New rules:

View File

@ -16,8 +16,8 @@ public class CSVRenderer extends AbstractRenderer implements Renderer {
StringBuffer buf = new StringBuffer(quoteAndCommify("Problem"));
buf.append(quoteAndCommify("Package"));
buf.append(quoteAndCommify("File"));
buf.append(quoteAndCommify("Line"));
buf.append(quoteAndCommify("Priority"));
buf.append(quoteAndCommify("Line"));
buf.append(quoteAndCommify("Description"));
buf.append(quoteAndCommify("Rule set"));
buf.append(quote("Rule"));