From ffd331db749c01af95ca40d30d1c780cc6cbe318 Mon Sep 17 00:00:00 2001 From: sta Date: Tue, 21 May 2019 21:18:40 +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 bdd4f871..e4a5ceef 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -597,15 +597,15 @@ namespace WebSocketSharp.Net /// that the cookie applies to. /// /// - /// An empty string if not present. + /// if not present. /// /// - /// The default value is an empty string. + /// The default value is . /// /// public string Port { get { - return _port ?? String.Empty; + return _port; } internal set {