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 0fbab05 Fix Javadoc errors 0fbab05 is described below commit 0fbab050ce47157e22c9f1eae776c12c1adad346 Author: Mark Thomas <ma...@apache.org> AuthorDate: Fri Dec 4 09:05:56 2020 +0000 Fix Javadoc errors --- java/org/apache/tomcat/util/net/SSLSupport.java | 7 ++++--- java/org/apache/tomcat/util/net/jsse/JSSESupport.java | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/java/org/apache/tomcat/util/net/SSLSupport.java b/java/org/apache/tomcat/util/net/SSLSupport.java index 2a69b8c..bf80f94 100644 --- a/java/org/apache/tomcat/util/net/SSLSupport.java +++ b/java/org/apache/tomcat/util/net/SSLSupport.java @@ -151,7 +151,8 @@ public interface SSLSupport { * * @return the list of SSL/TLS protocol versions requested by the client * - * @throws IOException + * @throws IOException If an error occurs trying to obtain the client + * requested protocol information from the socket */ public String getRequestedProtocols() throws IOException; @@ -159,8 +160,8 @@ public interface SSLSupport { * * @return the list of SSL/TLS ciphers requested by the client * - * @throws IOException + * @throws IOException If an error occurs trying to obtain the client + * request cipher information from the socket */ public String getRequestedCiphers() throws IOException; } - diff --git a/java/org/apache/tomcat/util/net/jsse/JSSESupport.java b/java/org/apache/tomcat/util/net/jsse/JSSESupport.java index fdce0c2..10e9417 100644 --- a/java/org/apache/tomcat/util/net/jsse/JSSESupport.java +++ b/java/org/apache/tomcat/util/net/jsse/JSSESupport.java @@ -78,7 +78,7 @@ public class JSSESupport implements SSLSupport, SSLSessionManager { private Map<String,List<String>> additionalAttributes; /** - * @param session + * @param session SSLSession from which information is to be extracted * * @deprecated This will be removed in Tomcat 10.1.x onwards * Use {@link JSSESupport#JSSESupport(SSLSession, Map)} --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org