This is an automated email from the ASF dual-hosted git repository.
remm 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 d256b0f Work around removed APIs
d256b0f is described below
commit d256b0f2523688123aefce2eb40768e0892fca72
Author: remm <[email protected]>
AuthorDate: Wed Nov 3 12:15:28 2021 +0100
Work around removed APIs
---
.../apache/tomcat/util/net/openssl/panama/OpenSSLImplementation.java | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git
a/modules/openssl-panama-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLImplementation.java
b/modules/openssl-panama-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLImplementation.java
index 20300bb..28d7ae2 100644
---
a/modules/openssl-panama-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLImplementation.java
+++
b/modules/openssl-panama-foreign/src/main/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLImplementation.java
@@ -30,9 +30,8 @@ import org.apache.tomcat.util.net.jsse.JSSESupport;
public class OpenSSLImplementation extends SSLImplementation {
@Deprecated
- @Override
public SSLSupport getSSLSupport(SSLSession session) {
- return new JSSESupport(session);
+ return new JSSESupport(session, null);
}
@Override
@@ -45,7 +44,6 @@ public class OpenSSLImplementation extends SSLImplementation {
return new OpenSSLUtil(certificate);
}
- @Override
public boolean isAlpnSupported() {
// OpenSSL supported ALPN
return true;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]