fixed imports and removed not needed log message
authorfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 10 Aug 2006 20:54:37 +0000 (20:54 +0000)
committerfhanik <fhanik@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 10 Aug 2006 20:54:37 +0000 (20:54 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@430526 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/coyote/http11/InternalNioOutputBuffer.java
java/org/apache/tomcat/util/net/NioEndpoint.java

index cbafdc1..9b2ee1f 100644 (file)
@@ -18,6 +18,7 @@ package org.apache.coyote.http11;
 
 import java.io.IOException;
 import java.nio.ByteBuffer;
+import java.nio.channels.SelectionKey;
 
 import org.apache.coyote.ActionCode;
 import org.apache.coyote.OutputBuffer;
@@ -27,11 +28,9 @@ import org.apache.tomcat.util.buf.CharChunk;
 import org.apache.tomcat.util.buf.MessageBytes;
 import org.apache.tomcat.util.http.HttpMessages;
 import org.apache.tomcat.util.http.MimeHeaders;
-import org.apache.tomcat.util.res.StringManager;
-import java.nio.channels.SelectionKey;
-import org.apache.tomcat.util.net.NioEndpoint;
-import java.nio.channels.Selector;
 import org.apache.tomcat.util.net.NioChannel;
+import org.apache.tomcat.util.net.NioEndpoint;
+import org.apache.tomcat.util.res.StringManager;
 
 /**
  * Output buffer.
index 77fda3b..f62b6a6 100644 (file)
@@ -557,7 +557,6 @@ public class NioEndpoint {
             }
 
             // Start poller threads
-            log.info("Creating poller threads:"+pollerThreadCount);
             pollers = new Poller[pollerThreadCount];
             for (int i = 0; i < pollerThreadCount; i++) {
                 pollers[i] = new Poller();