From e60007d9fe5f80aefbf29975bb4e09a27c993141 Mon Sep 17 00:00:00 2001 From: sta Date: Mon, 13 May 2019 21:12:00 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/CookieCollection.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/websocket-sharp/Net/CookieCollection.cs b/websocket-sharp/Net/CookieCollection.cs index bf7591de..e36657ef 100644 --- a/websocket-sharp/Net/CookieCollection.cs +++ b/websocket-sharp/Net/CookieCollection.cs @@ -386,7 +386,7 @@ namespace WebSocketSharp.Net if (idx == 0) { if (cookie != null) { - ret.Add (cookie); + ret.add (cookie); cookie = null; } @@ -514,13 +514,13 @@ namespace WebSocketSharp.Net } if (cookie != null) - ret.Add (cookie); + ret.add (cookie); cookie = new Cookie (name, val); } if (cookie != null) - ret.Add (cookie); + ret.add (cookie); return ret; }