diff --git a/websocket-sharp/Net/ServerSslConfiguration.cs b/websocket-sharp/Net/ServerSslConfiguration.cs
index 7ed8f1e4..d6a19252 100644
--- a/websocket-sharp/Net/ServerSslConfiguration.cs
+++ b/websocket-sharp/Net/ServerSslConfiguration.cs
@@ -66,20 +66,6 @@ namespace WebSocketSharp.Net
_enabledSslProtocols = SslProtocols.None;
}
- ///
- /// Initializes a new instance of the class
- /// with the specified .
- ///
- ///
- /// A that represents the certificate used to
- /// authenticate the server.
- ///
- public ServerSslConfiguration (X509Certificate2 serverCertificate)
- {
- _serverCert = serverCertificate;
- _enabledSslProtocols = SslProtocols.None;
- }
-
///
/// Copies the parameters from the specified to
/// a new instance of the class.