From 0791de41532be8f7ff74224485f5d17cb5e307f7 Mon Sep 17 00:00:00 2001 From: sta Date: Thu, 8 Feb 2018 16:48:38 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Ext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 06066d16..9acd711b 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -822,7 +822,7 @@ namespace WebSocketSharp ) { var len = value.Length; - var seps = new string (separators); + var separator = new string (separators); var buff = new StringBuilder (32); var end = len - 1; @@ -853,7 +853,7 @@ namespace WebSocketSharp continue; } - if (seps.Contains (c)) { + if (separator.Contains (c)) { if (quoted) continue;