[Modify] Polish it

This commit is contained in:
sta 2021-05-04 22:39:15 +09:00
parent 53dd507ae3
commit 6979b62f04

View File

@ -413,7 +413,10 @@ namespace WebSocketSharp.Net
if (_disposed)
throw new ObjectDisposedException (_objectName);
return _sslConfig ?? (_sslConfig = new ServerSslConfiguration ());
if (_sslConfig == null)
_sslConfig = new ServerSslConfiguration ();
return _sslConfig;
}
set {