From: markt Date: Thu, 19 Nov 2009 14:01:27 +0000 (+0000) Subject: Remove unused code X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=382b97e8b65558ce10ad076525e2db4b587b87df;p=tomcat7.0 Remove unused code git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@882148 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java b/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java index 1f2dee272..cd6401ad7 100644 --- a/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java +++ b/java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java @@ -161,7 +161,6 @@ public class JSSESocketFactory asock.addHandshakeCompletedListener( new DisableSslRenegotiation()); } - configureClientAuth(asock); } catch (SSLException e){ throw new SocketException("SSL handshake error" + e.toString()); } @@ -746,17 +745,6 @@ public class JSSESocketFactory } /** - * Configure Client authentication for this version of JSSE. The - * JSSE included in Java 1.4 supports the 'want' value. Prior - * versions of JSSE will treat 'want' as 'false'. - * @param socket the SSLSocket - */ - protected void configureClientAuth(SSLSocket socket){ - // Per JavaDocs: SSLSockets returned from - // SSLServerSocket.accept() inherit this setting. - } - - /** * Configures the given SSL server socket with the requested cipher suites, * protocol versions, and need for client authentication */