From d7c876d7f15fbe0b3cd189ef2747e17d252b55e2 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 9 Jun 2016 14:58:32 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Net/EndPointListener.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/websocket-sharp/Net/EndPointListener.cs b/websocket-sharp/Net/EndPointListener.cs index a4c7c755..b3b53a86 100644 --- a/websocket-sharp/Net/EndPointListener.cs +++ b/websocket-sharp/Net/EndPointListener.cs @@ -167,12 +167,12 @@ namespace WebSocketSharp.Net if (_prefixes.Count > 0) return; - var list = _unhandled; - if (list != null && list.Count > 0) + var prefs = _unhandled; + if (prefs != null && prefs.Count > 0) return; - list = _all; - if (list != null && list.Count > 0) + prefs = _all; + if (prefs != null && prefs.Count > 0) return; EndPointManager.RemoveEndPoint (this);