This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 6058ae4f61d2baa3a4c804fa62f73fe4034caaf0 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Feb 16 13:53:27 2023 +0000 Correct comment --- java/org/apache/coyote/http11/Http11AprProtocol.java | 7 +------ java/org/apache/coyote/http11/Http11NioProtocol.java | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/java/org/apache/coyote/http11/Http11AprProtocol.java b/java/org/apache/coyote/http11/Http11AprProtocol.java index 92b24022fb..a13a4d0c66 100644 --- a/java/org/apache/coyote/http11/Http11AprProtocol.java +++ b/java/org/apache/coyote/http11/Http11AprProtocol.java @@ -22,12 +22,7 @@ import org.apache.tomcat.util.net.AprEndpoint; /** - * Abstract the protocol implementation, including threading, etc. - * Processor is single threaded and specific to stream-based protocols, - * will not fit Jk protocols like JNI. - * - * @author Remy Maucherat - * @author Costin Manolache + * HTTP/1.1 protocol implementation using APR/native. * * @deprecated The APR/Native Connector will be removed in Tomcat 10.1.x * onwards. diff --git a/java/org/apache/coyote/http11/Http11NioProtocol.java b/java/org/apache/coyote/http11/Http11NioProtocol.java index ec6daabb5a..7e58ff5031 100644 --- a/java/org/apache/coyote/http11/Http11NioProtocol.java +++ b/java/org/apache/coyote/http11/Http11NioProtocol.java @@ -23,12 +23,7 @@ import org.apache.tomcat.util.net.NioEndpoint; /** - * Abstract the protocol implementation, including threading, etc. - * Processor is single threaded and specific to stream-based protocols, - * will not fit Jk protocols like JNI. - * - * @author Remy Maucherat - * @author Costin Manolache + * HTTP/1.1 protocol implementation using NIO. */ public class Http11NioProtocol extends AbstractHttp11JsseProtocol<NioChannel> { --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org