Author: markt
Date: Tue Nov 19 15:55:37 2013
New Revision: 1543464

URL: http://svn.apache.org/r1543464
Log:
Re-order / clean-up. No functional change.

Modified:
    tomcat/trunk/java/org/apache/catalina/Context.java

Modified: tomcat/trunk/java/org/apache/catalina/Context.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/Context.java?rev=1543464&r1=1543463&r2=1543464&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/Context.java (original)
+++ tomcat/trunk/java/org/apache/catalina/Context.java Tue Nov 19 15:55:37 2013
@@ -583,15 +583,21 @@ public interface Context extends Contain
     /**
      * Get the server.xml <context> attribute's xmlNamespaceAware.
      * @return true if namespace awareness is enabled.
-     *
      */
     public boolean getXmlNamespaceAware();
 
 
     /**
+     * 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);
+
+
+    /**
      * Get the server.xml <context> attribute's xmlValidation.
      * @return true if validation is enabled.
-     *
      */
     public boolean getXmlValidation();
 
@@ -604,13 +610,6 @@ public interface Context extends Contain
     public void setXmlValidation(boolean xmlValidation);
 
 
-   /**
-     * 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);
-
     /**
      * Get the Jar Scanner to be used to scan for JAR resources for this
      * context.



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

Reply via email to