This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/master by this push: new 97349ed Refactor: Make classes static and StoreType package protected 97349ed is described below commit 97349ed72443618eee564cb113f18fbc0ee60749 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