From 25dcba3a9edf94ea682362c6c8ae854d3eb67cd0 Mon Sep 17 00:00:00 2001 From: sta Date: Wed, 9 Feb 2022 19:35:24 +0900 Subject: [PATCH] [Modify] Remove it --- websocket-sharp/Ext.cs | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 15784c24..5a5fecde 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1764,27 +1764,6 @@ namespace WebSocketSharp return ret; } - /// - /// Executes the specified delegate times. - /// - /// - /// An that specifies the number of times to execute. - /// - /// - /// An delegate to execute. - /// - public static void Times (this int n, Action action) - { - if (n <= 0) - return; - - if (action == null) - return; - - for (int i = 0; i < n; i++) - action (); - } - /// /// Executes the specified delegate times. ///