From 0dbf9a0de1e0627326a00819df9d39fbb4c53b7c Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 6 Jun 2017 15:18:36 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Server/HttpServer.cs | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/websocket-sharp/Server/HttpServer.cs b/websocket-sharp/Server/HttpServer.cs index 9dc0e2af..69f8a61e 100644 --- a/websocket-sharp/Server/HttpServer.cs +++ b/websocket-sharp/Server/HttpServer.cs @@ -563,7 +563,7 @@ namespace WebSocketSharp.Server } /// - /// Gets or sets the SSL configuration used to authenticate the server and + /// Gets the SSL configuration used to authenticate the server and /// optionally the client for secure connection. /// /// @@ -574,16 +574,6 @@ namespace WebSocketSharp.Server get { return _listener.SslConfiguration; } - - set { - var msg = _state.CheckIfAvailable (true, false, false); - if (msg != null) { - _log.Error (msg); - return; - } - - _listener.SslConfiguration = value; - } } ///