Skip to content

Commit f3e97b9

Browse files
committed
[Modify] Polish it
1 parent f87f14d commit f3e97b9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

websocket-sharp/Net/CookieCollection.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -494,12 +494,12 @@ private static CookieCollection parseResponse (string value)
494494

495495
var s = val.Unquote ();
496496

497-
int num;
497+
int maxAge;
498498

499-
if (!Int32.TryParse (s, out num))
499+
if (!Int32.TryParse (s, out maxAge))
500500
continue;
501501

502-
cookie.MaxAge = num;
502+
cookie.MaxAge = maxAge;
503503

504504
continue;
505505
}

0 commit comments

Comments
 (0)