This is an automated email from the ASF dual-hosted git repository. remm 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 15cd795 63523: Restore SSLUtilBase methods as protected to preserve compatibility (second attempt) 15cd795 is described below commit 15cd795ee0ac144b87b52ca6e42335d5ebc0d0ad Author: remm <r...@apache.org> AuthorDate: Fri Jun 21 00:08:10 2019 +0200 63523: Restore SSLUtilBase methods as protected to preserve compatibility (second attempt) --- java/org/apache/tomcat/util/net/SSLUtilBase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/apache/tomcat/util/net/SSLUtilBase.java b/java/org/apache/tomcat/util/net/SSLUtilBase.java index a20b5c5..c7a23e2 100644 --- a/java/org/apache/tomcat/util/net/SSLUtilBase.java +++ b/java/org/apache/tomcat/util/net/SSLUtilBase.java @@ -485,7 +485,7 @@ public abstract class SSLUtilBase implements SSLUtil { * @return The parameters including the CRLs and TrustStore. * @throws Exception An error occurred */ - private CertPathParameters getParameters(String crlf, KeyStore trustStore, + protected CertPathParameters getParameters(String crlf, KeyStore trustStore, boolean revocationEnabled) throws Exception { PKIXBuilderParameters xparams = @@ -512,7 +512,7 @@ public abstract class SSLUtilBase implements SSLUtil { * @throws CRLException CRL error * @throws CertificateException Error processing certificate */ - private Collection<? extends CRL> getCRLs(String crlf) + protected Collection<? extends CRL> getCRLs(String crlf) throws IOException, CRLException, CertificateException { Collection<? extends CRL> crls = null; --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org