From: markt Date: Thu, 12 Mar 2009 22:11:17 +0000 (+0000) Subject: Remove two validation related fields no longer used in the digester X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1a2e84d0fd3934a7218c6800500c5326e75278c0;p=tomcat7.0 Remove two validation related fields no longer used in the digester git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@753036 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/digester/Digester.java b/java/org/apache/tomcat/util/digester/Digester.java index b7ed85d74..735b307e1 100644 --- a/java/org/apache/tomcat/util/digester/Digester.java +++ b/java/org/apache/tomcat/util/digester/Digester.java @@ -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 W3C_XML_SCHEMA - */ - 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 stack = new ArrayStack(); @@ -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() {