[Modify] Polish it

This commit is contained in:
sta 2017-02-14 15:50:38 +09:00
parent 3442218d53
commit bd84fda5b5

View File

@ -552,7 +552,10 @@ namespace WebSocketSharp.Server
/// </value>
public ServerSslConfiguration SslConfiguration {
get {
return _sslConfig ?? (_sslConfig = new ServerSslConfiguration (null));
if (_sslConfig == null)
_sslConfig = new ServerSslConfiguration (null);
return _sslConfig;
}
}