[Modify] Remove it

This commit is contained in:
sta 2021-07-24 21:05:39 +09:00
parent 2c293201c6
commit 8c8be0c219

View File

@ -855,16 +855,6 @@ namespace WebSocketSharp.Server
return true; return true;
} }
private string createFilePath (string childPath)
{
childPath = childPath.TrimStart ('/', '\\');
return new StringBuilder (_docRootPath, 32)
.AppendFormat ("/{0}", childPath)
.ToString ()
.Replace ('\\', '/');
}
private static HttpListener createListener ( private static HttpListener createListener (
string hostname, int port, bool secure string hostname, int port, bool secure
) )