[Modify] Remove it

This commit is contained in:
sta 2019-01-02 16:46:47 +09:00
parent 35364e5be6
commit a72210c9db

View File

@ -73,25 +73,6 @@ namespace WebSocketSharp.Net
#region Private Methods
private static int getChar (string s, int offset, int length)
{
var val = 0;
var end = length + offset;
for (var i = offset; i < end; i++) {
var c = s[i];
if (c > 127)
return -1;
var current = getInt ((byte) c);
if (current == -1)
return -1;
val = (val << 4) + current;
}
return val;
}
private static char[] getChars (MemoryStream buffer, Encoding encoding)
{
return encoding.GetChars (buffer.GetBuffer (), 0, (int) buffer.Length);