From: fhanik Date: Thu, 10 Aug 2006 20:54:37 +0000 (+0000) Subject: fixed imports and removed not needed log message X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=a8977211afc3b845a8212f49e3e622a5506f0eee;p=tomcat7.0 fixed imports and removed not needed log message git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@430526 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/coyote/http11/InternalNioOutputBuffer.java b/java/org/apache/coyote/http11/InternalNioOutputBuffer.java index cbafdc16b..9b2ee1ffa 100644 --- a/java/org/apache/coyote/http11/InternalNioOutputBuffer.java +++ b/java/org/apache/coyote/http11/InternalNioOutputBuffer.java @@ -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. diff --git a/java/org/apache/tomcat/util/net/NioEndpoint.java b/java/org/apache/tomcat/util/net/NioEndpoint.java index 77fda3b70..f62b6a6d9 100644 --- a/java/org/apache/tomcat/util/net/NioEndpoint.java +++ b/java/org/apache/tomcat/util/net/NioEndpoint.java @@ -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();