diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index d5a839b0..22222ad8 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 ulong n, Action action)
- {
- if (n == 0)
- return;
-
- if (action == null)
- return;
-
- for (ulong i = 0; i < n; i++)
- action ();
- }
-
///
/// Executes the specified delegate times.
///