Removed some warnings

This commit is contained in:
Bond_009
2018-12-15 19:53:09 +01:00
parent 336a4a2b8d
commit 22093c9e8f
11 changed files with 22 additions and 37 deletions

View File

@@ -299,7 +299,7 @@ namespace SocketHttpListener
}
OnError.Emit(this, new ErrorEventArgs(message));
}
catch (Exception ex)
catch (Exception)
{
}
}
@@ -310,7 +310,7 @@ namespace SocketHttpListener
{
OnError.Emit(this, new ErrorEventArgs(message));
}
catch (Exception ex)
catch (Exception)
{
}
}
@@ -423,7 +423,7 @@ namespace SocketHttpListener
private bool processPingFrame(WebSocketFrame frame)
{
var mask = Mask.Unmask;
//var mask = Mask.Unmask;
return true;
}
@@ -796,4 +796,4 @@ namespace SocketHttpListener
#endregion
}
}
}