From 77d67feaf9dc7bc2ce8427ca77e84b436189e436 Mon Sep 17 00:00:00 2001 From: sta Date: Sat, 14 Sep 2019 22:01:18 +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 37c26614..9206f32a 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1848,7 +1848,7 @@ namespace WebSocketSharp /// public static void Times (this ulong n, Action action) { - if (n <= 0) + if (n == 0) return; if (action == null)