From: markt Date: Sat, 12 Mar 2011 10:10:44 +0000 (+0000) Subject: Align code and comments - no functional change X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=0654ecc08a5587e14bd249a0e66ced9ad7317309;p=tomcat7.0 Align code and comments - no functional change git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1080903 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java index a90a2794f..cf62f0cb8 100644 --- a/java/org/apache/coyote/http11/AbstractHttp11Protocol.java +++ b/java/org/apache/coyote/http11/AbstractHttp11Protocol.java @@ -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.