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 94a31cc Refactor: Make classes static and StoreType package protected 94a31cc is described below commit 94a31cc08f4674d7203fd5425bc08398d8c066fe Author: Mark Thomas <ma...@apache.org> AuthorDate: Tue Feb 26 15:01:36 2019 +0000 Refactor: Make classes static and StoreType package protected --- java/org/apache/tomcat/util/net/SSLHostConfigCertificate.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/java/org/apache/tomcat/util/net/SSLHostConfigCertificate.java b/java/org/apache/tomcat/util/net/SSLHostConfigCertificate.java index 24018bc..5dd6401 100644 --- a/java/org/apache/tomcat/util/net/SSLHostConfigCertificate.java +++ b/java/org/apache/tomcat/util/net/SSLHostConfigCertificate.java @@ -256,7 +256,7 @@ public class SSLHostConfigCertificate implements Serializable { // Nested types - public enum Type { + public static enum Type { UNDEFINED, RSA(Authentication.RSA), @@ -279,7 +279,7 @@ public class SSLHostConfigCertificate implements Serializable { } } - private enum StoreType { + static enum StoreType { KEYSTORE, PEM } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org