diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs index 7d5b27b8..d5a839b0 100644 --- a/websocket-sharp/Ext.cs +++ b/websocket-sharp/Ext.cs @@ -1764,27 +1764,6 @@ namespace WebSocketSharp return ret; } - /// - /// Executes the specified delegate times. - /// - /// - /// A that specifies the number of times to execute. - /// - /// - /// An delegate to execute. - /// - public static void Times (this uint n, Action action) - { - if (n == 0) - return; - - if (action == null) - return; - - for (uint i = 0; i < n; i++) - action (); - } - /// /// Executes the specified delegate times. ///