Remove unused code
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 Nov 2009 14:01:27 +0000 (14:01 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Thu, 19 Nov 2009 14:01:27 +0000 (14:01 +0000)
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

index 1f2dee2..cd6401a 100644 (file)
@@ -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
      */