diff --git a/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java b/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java index f2d0431f97..6e784bfb22 100644 --- a/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java +++ b/pmd/src/net/sourceforge/pmd/rules/UnusedFormalParameterRule.java @@ -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()))); } }