diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index 17a17684..7998f454 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -103,12 +103,7 @@ namespace WebSocketSharp.Net /// public Cookie () { - _domain = String.Empty; - _expires = DateTime.MinValue; - _name = String.Empty; - _path = String.Empty; - _timeStamp = DateTime.Now; - _value = String.Empty; + init (String.Empty, String.Empty, String.Empty, String.Empty); } ///