Move declaration as per Knostantin's review comment
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 6 Jan 2010 10:56:48 +0000 (10:56 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Wed, 6 Jan 2010 10:56:48 +0000 (10:56 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@896384 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/connector/CoyoteAdapter.java

index ed4c8b5..7ccad23 100644 (file)
@@ -57,15 +57,15 @@ import org.apache.tomcat.util.net.SocketStatus;
 
 public class CoyoteAdapter implements Adapter {
     
+    private static final Log log = LogFactory.getLog(CoyoteAdapter.class);
+
+    // -------------------------------------------------------------- Constants
+
     private static final String POWERED_BY = "Servlet/3.0 JSP/2.2 " +
             "(" + ServerInfo.getServerInfo() + " Java/" +
             System.getProperty("java.vm.vendor") + "/" +
             System.getProperty("java.runtime.version") + ")";
 
-    private static final Log log = LogFactory.getLog(CoyoteAdapter.class);
-
-    // -------------------------------------------------------------- Constants
-
     private static final EnumSet<SessionTrackingMode> SSL_ONLY =
         EnumSet.of(SessionTrackingMode.SSL);