[Modify] Remove it
This commit is contained in:
parent
883d90aa18
commit
455fa52e1f
@ -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'
|
||||
|
Loading…
Reference in New Issue
Block a user