PMD - Remove unnecessary parentheses

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/chain/trunk@1497553 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/configuration/xml/src/main/java/org/apache/commons/chain2/config/xml/XmlConfigParser.java b/configuration/xml/src/main/java/org/apache/commons/chain2/config/xml/XmlConfigParser.java
index 58e9868..f9f3a0c 100644
--- a/configuration/xml/src/main/java/org/apache/commons/chain2/config/xml/XmlConfigParser.java
+++ b/configuration/xml/src/main/java/org/apache/commons/chain2/config/xml/XmlConfigParser.java
@@ -89,7 +89,7 @@
         digester.setUseContextClassLoader(getUseContextClassLoader());
         digester.setValidating(false);
         digester.addRuleSet(ruleSet);
-        return (digester);
+        return digester;
     }
 
     /**
@@ -98,7 +98,7 @@
      * @return The RuleSet for configuring a Digester instance.
      */
     public RuleSet getRuleSet() {
-        return (ruleSet);
+        return ruleSet;
     }
 
     /**
@@ -118,7 +118,7 @@
      * @return <code>true</code> if Digester should use the context class loader.
      */
     public boolean getUseContextClassLoader() {
-        return (this.useContextClassLoader);
+        return this.useContextClassLoader;
     }
 
     /**