You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2017/07/30 19:25:54 UTC

svn commit: r1803461 - /tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java

Author: markt
Date: Sun Jul 30 19:25:53 2017
New Revision: 1803461

URL: http://svn.apache.org/viewvc?rev=1803461&view=rev
Log:
Remove unused code identified by FindBugs

Modified:
    tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java

Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java?rev=1803461&r1=1803460&r2=1803461&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java (original)
+++ tomcat/trunk/java/org/apache/tomcat/util/digester/RulesBase.java Sun Jul 30 19:25:53 2017
@@ -55,17 +55,6 @@ public class RulesBase implements Rules
 
 
     /**
-     * The namespace URI for which subsequently added <code>Rule</code>
-     * objects are relevant, or <code>null</code> for matching independent
-     * of namespaces.
-     *
-     * @deprecated Unused. Will be removed in Tomcat 9.0.x
-     */
-    @Deprecated
-    protected String namespaceURI = null;
-
-
-    /**
      * The set of registered Rule instances, in the order that they were
      * originally registered.
      */
@@ -124,9 +113,6 @@ public class RulesBase implements Rules
         if (this.digester != null) {
             rule.setDigester(this.digester);
         }
-        if (this.namespaceURI != null) {
-            rule.setNamespaceURI(this.namespaceURI);
-        }
     }
 
 



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org