[Modify] Remove it

This commit is contained in:
sta 2018-10-06 20:26:56 +09:00
parent bdfbd7d684
commit f350ac4078

View File

@ -475,18 +475,6 @@ namespace WebSocketSharp.Net
|| c == '~';
}
private static bool notEncoded (char c)
{
return c == '!' ||
c == '\'' ||
c == '(' ||
c == ')' ||
c == '*' ||
c == '-' ||
c == '.' ||
c == '_';
}
private static void urlEncode (byte b, Stream output)
{
if (b > 31 && b < 127) {