[Modify] Remove it

This commit is contained in:
sta 2020-01-16 21:45:53 +09:00
parent a1e56b5251
commit 14b0c2f711

View File

@ -652,19 +652,6 @@ namespace WebSocketSharp
return value > 0 && value < 65536;
}
internal static bool IsPrintable (this string value)
{
foreach (var c in value) {
if (c < 0x20)
return false;
if (c > 0x7e)
return false;
}
return true;
}
internal static bool IsReserved (this ushort code)
{
return code == 1004