Replaced the AcceptWebSocket (string, Logger) method with the AcceptWebSocket (string) method

This commit is contained in:
sta
2015-02-05 17:31:33 +09:00
parent a1da1a8ada
commit 828e117190
2 changed files with 3 additions and 6 deletions

View File

@@ -554,7 +554,7 @@ namespace WebSocketSharp.Server
state => {
try {
if (ctx.Request.IsUpgradeTo ("websocket")) {
processRequest (ctx.AcceptWebSocket (null, _logger));
processRequest (ctx.AcceptWebSocket (null));
return;
}