[Modify] Remove it

This commit is contained in:
sta 2018-11-11 18:02:04 +09:00
parent f5e98d42c6
commit a35bdbffbf

View File

@ -471,11 +471,6 @@ namespace WebSocketSharp.Net
|| (c >= 'a' && c <= 'z');
}
private static bool isNumeric (byte b)
{
return b >= 48 && b <= 57;
}
private static bool isNumeric (char c)
{
return c >= '0' && c <= '9';