From 244057bb234bafa8512575e0c3ea26029d802d5b Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 10 Feb 2019 18:14:17 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/Cookie.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/websocket-sharp/Net/Cookie.cs b/websocket-sharp/Net/Cookie.cs index 73c2d812..41d5c799 100644 --- a/websocket-sharp/Net/Cookie.cs +++ b/websocket-sharp/Net/Cookie.cs @@ -614,11 +614,11 @@ namespace WebSocketSharp.Net private static int hash (int i, int j, int k, int l, int m) { - return i ^ - (j << 13 | j >> 19) ^ - (k << 26 | k >> 6) ^ - (l << 7 | l >> 25) ^ - (m << 20 | m >> 12); + return i + ^ (j << 13 | j >> 19) + ^ (k << 26 | k >> 6) + ^ (l << 7 | l >> 25) + ^ (m << 20 | m >> 12); } private string toResponseStringVersion0 ()