[Modify] Remove it

This commit is contained in:
sta 2019-01-02 16:45:04 +09:00
parent 7c5cd7f02c
commit 35364e5be6

View File

@ -73,21 +73,6 @@ namespace WebSocketSharp.Net
#region Private Methods
private static int getChar (byte[] bytes, int offset, int length)
{
var val = 0;
var end = length + offset;
for (var i = offset; i < end; i++) {
var current = getInt (bytes[i]);
if (current == -1)
return -1;
val = (val << 4) + current;
}
return val;
}
private static int getChar (string s, int offset, int length)
{
var val = 0;