From 8f452670b5780d5ea4baa3a108ced0feb4278c60 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 7 Nov 2018 19:47:23 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Net/HttpUtility.cs | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/websocket-sharp/Net/HttpUtility.cs b/websocket-sharp/Net/HttpUtility.cs index b74c6571..347bb04d 100644 --- a/websocket-sharp/Net/HttpUtility.cs +++ b/websocket-sharp/Net/HttpUtility.cs @@ -1288,16 +1288,6 @@ namespace WebSocketSharp.Net return InternalUrlEncodeToBytes (bytes, 0, bytes.Length); } - public static byte[] UrlEncodeUnicodeToBytes (string s) - { - if (s == null) - throw new ArgumentNullException ("s"); - - return s.Length > 0 - ? InternalUrlEncodeUnicodeToBytes (s) - : new byte[0]; - } - public static string UrlPathEncode (string s) { if (s == null)