Author: markt
Date: Thu Dec 18 12:54:17 2014
New Revision: 1646445
URL: http://svn.apache.org/r1646445
Log:
Remove unused method
Modified:
tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/SSLSupport.java
tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java
Modified: tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/SSLSupport.java
URL:
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/SSLSupport.java?rev=1646445&r1=1646444&r2=1646445&view=diff
==============================================================================
--- tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/SSLSupport.java
(original)
+++ tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/SSLSupport.java Thu
Dec 18 12:54:17 2014
@@ -80,17 +80,12 @@ public interface SSLSupport {
/**
* The client certificate chain (if any).
+ *
+ * @param force If <code>true</code>, then re-negotiate the connection and
+ * request a client certificate if a client certificate has
not
+ * already been requested.
*/
- public Object[] getPeerCertificateChain()
- throws IOException;
-
- /**
- * The client certificate chain (if any).
- * @param force If <code>true</code>, then re-negotiate the
- * connection if necessary.
- */
- public Object[] getPeerCertificateChain(boolean force)
- throws IOException;
+ public Object[] getPeerCertificateChain(boolean force) throws IOException;
/**
* Get the keysize.
Modified:
tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java
URL:
http://svn.apache.org/viewvc/tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java?rev=1646445&r1=1646444&r2=1646445&view=diff
==============================================================================
--- tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java
(original)
+++ tomcat/tc8.0.x/trunk/java/org/apache/tomcat/util/net/jsse/JSSESupport.java
Thu Dec 18 12:54:17 2014
@@ -85,12 +85,6 @@ class JSSESupport implements SSLSupport,
return session.getCipherSuite();
}
- @Override
- public Object[] getPeerCertificateChain()
- throws IOException {
- return getPeerCertificateChain(false);
- }
-
protected java.security.cert.X509Certificate [] getX509Certificates(
SSLSession session) {
Certificate [] certs=null;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]