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:
@ -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:
|
||||
|
@ -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"));
|
||||
|
Reference in New Issue
Block a user