[Modify] Remove it

This commit is contained in:
sta 2019-01-03 17:42:46 +09:00
parent 883d90aa18
commit 455fa52e1f

View File

@ -83,18 +83,6 @@ namespace WebSocketSharp.Net
}
}
private static int getInt (byte b)
{
var c = (char) b;
return c >= '0' && c <= '9'
? c - '0'
: c >= 'a' && c <= 'f'
? c - 'a' + 10
: c >= 'A' && c <= 'F'
? c - 'A' + 10
: -1;
}
private static int getNumber (char c)
{
return c >= '0' && c <= '9'