diff --git a/websocket-sharp/Server/WebSocketServiceHost.cs b/websocket-sharp/Server/WebSocketServiceHost.cs
index 1db348ec..1bf44441 100644
--- a/websocket-sharp/Server/WebSocketServiceHost.cs
+++ b/websocket-sharp/Server/WebSocketServiceHost.cs
@@ -41,7 +41,7 @@ namespace WebSocketSharp.Server
{
///
/// Exposes the methods and properties used to access the information in a WebSocket service
- /// provided by the or .
+ /// provided by the or .
///
///
/// The WebSocketServiceHost class is an abstract class.
@@ -131,7 +131,6 @@ namespace WebSocketSharp.Server
internal void Stop (ushort code, string reason)
{
var e = new CloseEventArgs (code, reason);
-
var send = !code.IsReserved ();
var bytes =
send ? WebSocketFrame.CreateCloseFrame (e.PayloadData, false).ToByteArray () : null;