diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index 2cfe5a93..955fa21e 100644
--- a/websocket-sharp/Ext.cs
+++ b/websocket-sharp/Ext.cs
@@ -1816,32 +1816,6 @@ namespace WebSocketSharp
action (i);
}
- ///
- /// Executes the specified delegate times.
- ///
- ///
- /// A that specifies the number of times to execute.
- ///
- ///
- ///
- /// An Action<ulong> delegate to execute.
- ///
- ///
- /// The parameter is the zero-based count of iteration.
- ///
- ///
- 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 (i);
- }
-
///
/// Converts the order of elements in the specified byte array to
/// host (this computer architecture) byte order.