From 382b97e8b65558ce10ad076525e2db4b587b87df Mon Sep 17 00:00:00 2001 From: markt Date: Thu, 19 Nov 2009 14:01:27 +0000 Subject: [PATCH] Remove unused code git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@882148 13f79535-47bb-0310-9956-ffa450edef68 --- java/org/apache/tomcat/util/net/jsse/JSSESocketFactory.java | 12 ------------ 1 file changed, 12 deletions(-) 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 */ -- 2.11.0