Author: markt
Date: Sat Mar 12 10:10:44 2011
New Revision: 1080903

URL: http://svn.apache.org/viewvc?rev=1080903&view=rev
Log:
Align code and comments - no functional change

Modified:
    tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java

Modified: tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java
URL: 
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java?rev=1080903&r1=1080902&r2=1080903&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java 
(original)
+++ tomcat/trunk/java/org/apache/coyote/http11/AbstractHttp11Protocol.java Sat 
Mar 12 10:10:44 2011
@@ -145,18 +145,6 @@ public abstract class AbstractHttp11Prot
     }
 
 
-    // ------------------------------------------------ HTTP specific 
properties
-    // ------------------------------------------ passed through to the 
EndPoint
-    
-    public boolean isSSLEnabled() { return endpoint.isSSLEnabled();}
-    public void setSSLEnabled(boolean SSLEnabled) {
-        endpoint.setSSLEnabled(SSLEnabled);
-    }    
-
-
-    // ------------------------------------------------ HTTP specific 
properties
-    // --------- passed through to the EndPoint and made available as 
attributes
-
     /**
      * This field indicates if the protocol is treated as if it is secure. This
      * normally means https is being used but can be used to fake https e.g
@@ -169,6 +157,15 @@ public abstract class AbstractHttp11Prot
     }
     
 
+    // ------------------------------------------------ HTTP specific 
properties
+    // ------------------------------------------ passed through to the 
EndPoint
+    
+    public boolean isSSLEnabled() { return endpoint.isSSLEnabled();}
+    public void setSSLEnabled(boolean SSLEnabled) {
+        endpoint.setSSLEnabled(SSLEnabled);
+    }    
+
+
     /**
      * Maximum number of requests which can be performed over a keepalive 
      * connection. The default is the same as for Apache HTTP Server.



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

Reply via email to