From f32a2068ecb8f00ced963456b6e08b3bcff24291 Mon Sep 17 00:00:00 2001 From: sta Date: Sun, 11 Nov 2018 18:05:14 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Net/HttpUtility.cs | 8 -------- 1 file changed, 8 deletions(-) diff --git a/websocket-sharp/Net/HttpUtility.cs b/websocket-sharp/Net/HttpUtility.cs index 1356bf1f..cac7fc49 100644 --- a/websocket-sharp/Net/HttpUtility.cs +++ b/websocket-sharp/Net/HttpUtility.cs @@ -470,14 +470,6 @@ namespace WebSocketSharp.Net return c >= '0' && c <= '9'; } - private static bool isUnreserved (byte b) - { - return b == 42 - || b == 45 - || b == 46 - || b == 95; - } - private static bool isUnreserved (char c) { return c == '*'