diff --git a/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java b/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java index 9f0a484464..291bb7ce9e 100644 --- a/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java +++ b/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java @@ -56,7 +56,7 @@ public class UnusedFormalParameterRule extends AbstractRule { checkParamNames(paramNames, (SimpleNode)node.jjtGetChild(2)); //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()))); } }