removed println

git-svn-id: https://pmd.svn.sourceforge.net/svnroot/pmd/trunk@553 51baf565-9d33-0410-a72c-fc3788e3496d
This commit is contained in:
Tom Copeland
2002-07-30 01:36:53 +00:00
parent 87bd832fdc
commit fee87034f2

View File

@ -75,7 +75,7 @@ public class UnusedFormalParameterRule extends AbstractRule {
checkParamNames(paramNames, blockNode); //check the block node for the occurence of the parameter names
if (!paramNames.isEmpty()) { //there are still names left in the set so the must not have been used
RuleContext ctx = (RuleContext)data;
System.out.println(paramNames);
//System.out.println(paramNames);
ctx.getReport().addRuleViolation(createRuleViolation(ctx, md.getBeginLine(), MessageFormat.format(getMessage(), paramNames.toArray())));
}
}