From: markt Date: Wed, 8 Sep 2010 05:43:39 +0000 (+0000) Subject: Remove unused attributes. This all moved to Context. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=61c4ab7f6a571f6e7e58834d8fe50175876bd814;p=tomcat7.0 Remove unused attributes. This all moved to Context. git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@993608 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/catalina/startup/HostConfig.java b/java/org/apache/catalina/startup/HostConfig.java index d44b9c4d5..f1e10da60 100644 --- a/java/org/apache/catalina/startup/HostConfig.java +++ b/java/org/apache/catalina/startup/HostConfig.java @@ -152,18 +152,6 @@ public class HostConfig /** - * Attribute value used to turn on/off XML validation - */ - protected boolean xmlValidation = false; - - - /** - * Attribute value used to turn on/off XML namespace awareness. - */ - protected boolean xmlNamespaceAware = false; - - - /** * The Digester instance used to parse context descriptors. */ protected static Digester digester = createDigester(); @@ -287,44 +275,6 @@ public class HostConfig } - /** - * Set the validation feature of the XML parser used when - * parsing xml instances. - * @param xmlValidation true to enable xml instance validation - */ - public void setXmlValidation(boolean xmlValidation){ - this.xmlValidation = xmlValidation; - } - - /** - * Get the server.xml <host> attribute's xmlValidation. - * @return true if validation is enabled. - * - */ - public boolean getXmlValidation(){ - return xmlValidation; - } - - /** - * Get the server.xml <host> attribute's xmlNamespaceAware. - * @return true if namespace awareness is enabled. - * - */ - public boolean getXmlNamespaceAware(){ - return xmlNamespaceAware; - } - - - /** - * Set the namespace-aware feature of the XML parser used when - * parsing xml instances. - * @param xmlNamespaceAware true to enable namespace awareness - */ - public void setXmlNamespaceAware(boolean xmlNamespaceAware){ - this.xmlNamespaceAware=xmlNamespaceAware; - } - - // --------------------------------------------------------- Public Methods