You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2021/09/24 12:01:21 UTC

[tomcat] branch main updated: Avoid using deprecated method

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/main by this push:
     new 7f8f1ca  Avoid using deprecated method
7f8f1ca is described below

commit 7f8f1ca9a0ee8bfd5d7da563b287038abecfbf42
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Fri Sep 24 13:01:18 2021 +0100

    Avoid using deprecated method
---
 java/org/apache/coyote/AbstractProtocol.java | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/java/org/apache/coyote/AbstractProtocol.java b/java/org/apache/coyote/AbstractProtocol.java
index 630ea90..c8af0d2 100644
--- a/java/org/apache/coyote/AbstractProtocol.java
+++ b/java/org/apache/coyote/AbstractProtocol.java
@@ -853,8 +853,7 @@ public abstract class AbstractProtocol<S> implements ProtocolHandler,
                     }
                 }
 
-                processor.setSslSupport(
-                        wrapper.getSslSupport(getProtocol().getClientCertProvider()));
+                processor.setSslSupport(wrapper.getSslSupport());
 
                 // Associate the processor with the connection
                 wrapper.setCurrentProcessor(processor);

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