[Modify] Polish it

This commit is contained in:
sta 2019-11-13 20:24:50 +09:00
parent b08d63699f
commit 6aa4630594

View File

@ -234,7 +234,10 @@ namespace WebSocketSharp.Net
/// </value>
public CookieCollection Cookies {
get {
return _cookies ?? (_cookies = new CookieCollection ());
if (_cookies == null)
_cookies = new CookieCollection ();
return _cookies;
}
set {