Align code and comments - no functional change
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 12 Mar 2011 10:10:44 +0000 (10:10 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Sat, 12 Mar 2011 10:10:44 +0000 (10:10 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1080903 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/AbstractHttp11Protocol.java

index a90a279..cf62f0c 100644 (file)
@@ -145,18 +145,6 @@ public abstract class AbstractHttp11Protocol extends AbstractProtocolHandler {
     }
 
 
-    // ------------------------------------------------ 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 AbstractHttp11Protocol extends AbstractProtocolHandler {
     }
     
 
+    // ------------------------------------------------ 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.