From 9c952e3d4d57408a0beef3e92a563162a301449e Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 19 May 2019 21:05:00 +0900 Subject: [PATCH] [Modify] The default value is null --- websocket-sharp/Net/Cookie.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index db8112fd..dda5adeb 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -357,15 +357,15 @@ namespace WebSocketSharp.Net /// intended use of the cookie. /// /// - /// An empty string if not present. + /// if not present. /// /// - /// The default value is an empty string. + /// The default value is . /// /// public string Comment { get { - return _comment ?? String.Empty; + return _comment; } internal set {