[Modify] Polish it

This commit is contained in:
sta 2019-09-14 22:00:06 +09:00
parent 883e09756d
commit 5073993dd4

View File

@ -1827,7 +1827,7 @@ namespace WebSocketSharp
/// </param> /// </param>
public static void Times (this uint n, Action action) public static void Times (this uint n, Action action)
{ {
if (n <= 0) if (n == 0)
return; return;
if (action == null) if (action == null)