Remove two validation related fields no longer used in the digester
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 12 Mar 2009 22:11:17 +0000 (22:11 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 12 Mar 2009 22:11:17 +0000 (22:11 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@753036 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/tomcat/util/digester/Digester.java

index b7ed85d..735b307 100644 (file)
@@ -276,19 +276,6 @@ public class Digester extends DefaultHandler {
     protected Rules rules = null;
 
     /**
-     * The XML schema language to use for validating an XML instance. By
-     * default this value is set to <code>W3C_XML_SCHEMA</code>
-     */
-    protected String schemaLanguage = W3C_XML_SCHEMA;
-    
-        
-    /**
-     * The XML schema to use for validating an XML instance.
-     */
-    protected String schemaLocation = null;
-    
-    
-    /**
      * The object stack being constructed.
      */
     protected ArrayStack<Object> stack = new ArrayStack<Object>();
@@ -761,50 +748,6 @@ public class Digester extends DefaultHandler {
 
 
     /**
-     * Return the XML Schema URI used for validating an XML instance.
-     */
-    public String getSchema() {
-
-        return (this.schemaLocation);
-
-    }
-
-
-    /**
-     * Set the XML Schema URI used for validating a XML Instance.
-     *
-     * @param schemaLocation a URI to the schema.
-     */
-    public void setSchema(String schemaLocation){
-
-        this.schemaLocation = schemaLocation;
-
-    }   
-    
-
-    /**
-     * Return the XML Schema language used when parsing.
-     */
-    public String getSchemaLanguage() {
-
-        return (this.schemaLanguage);
-
-    }
-
-
-    /**
-     * Set the XML Schema language used when parsing. By default, we use W3C.
-     *
-     * @param schemaLanguage a URI to the schema language.
-     */
-    public void setSchemaLanguage(String schemaLanguage){
-
-        this.schemaLanguage = schemaLanguage;
-
-    }   
-
-
-    /**
      * Return the boolean as to whether the context classloader should be used.
      */
     public boolean getUseContextClassLoader() {