[Modify] Remove it

This commit is contained in:
sta 2021-08-25 19:36:27 +09:00
parent bd9ac32699
commit f1306eb140

View File

@ -748,21 +748,6 @@ namespace WebSocketSharp.Server
|| name == _hostname; || name == _hostname;
} }
private static bool checkSslConfiguration (
ServerSslConfiguration configuration, out string message
)
{
message = null;
if (configuration.ServerCertificate == null) {
message = "There is no server certificate for secure connection.";
return false;
}
return true;
}
private string getRealm () private string getRealm ()
{ {
var realm = _realm; var realm = _realm;