From 5073993dd46c8aeb27eb61af4a1d49b1567b58b8 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 14 Sep 2019 22:00:06 +0900 Subject: [PATCH] [Modify] Polish it --- websocket-sharp/Ext.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 9238c96f..37c26614 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1827,7 +1827,7 @@ namespace WebSocketSharp /// public static void Times (this uint n, Action action) { - if (n <= 0) + if (n == 0) return; if (action == null)