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


The following commit(s) were added to refs/heads/8.5.x by this push:
     new ffb7527  Align with 9.0.x onwards
ffb7527 is described below

commit ffb7527b9a83bb4d849add0c4339504baa2394f7
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Feb 17 17:41:23 2022 +0000

    Align with 9.0.x onwards
---
 java/org/apache/coyote/http11/Http11Nio2Protocol.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/java/org/apache/coyote/http11/Http11Nio2Protocol.java 
b/java/org/apache/coyote/http11/Http11Nio2Protocol.java
index de520ef..e30b41a 100644
--- a/java/org/apache/coyote/http11/Http11Nio2Protocol.java
+++ b/java/org/apache/coyote/http11/Http11Nio2Protocol.java
@@ -44,9 +44,9 @@ public class Http11Nio2Protocol extends 
AbstractHttp11JsseProtocol<Nio2Channel>
     @Override
     protected String getNamePrefix() {
         if (isSSLEnabled()) {
-            return ("https-" + getSslImplementationShortName()+ "-nio2");
+            return "https-" + getSslImplementationShortName()+ "-nio2";
         } else {
-            return ("http-nio2");
+            return "http-nio2";
         }
     }
 }

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to