Author: markt Date: Thu Mar 12 22:11:17 2009 New Revision: 753036 URL: http://svn.apache.org/viewvc?rev=753036&view=rev Log: Remove two validation related fields no longer used in the digester
Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java Modified: tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java?rev=753036&r1=753035&r2=753036&view=diff ============================================================================== --- tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java (original) +++ tomcat/trunk/java/org/apache/tomcat/util/digester/Digester.java Thu Mar 12 22:11:17 2009 @@ -276,19 +276,6 @@ 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 @@ /** - * 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() { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org