This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 8.5.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit 1a439c7d5ed24c5e8e7d020af45d2631213d9a82 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 99cfe01a5f..678cb9a38a 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 a611f2caa5..2634f61cd5 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