Skip to content

Commit

Permalink
version
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp committed Nov 8, 2023
1 parent fd4b85f commit 25dc4a9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<Version>1.30.0</Version>
<Version>1.31.0</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<PackageTags>Polyfill</PackageTags>
<DisableImplicitNamespaceImports>true</DisableImplicitNamespaceImports>
Expand Down
4 changes: 2 additions & 2 deletions src/Polyfill/PolyfillExtensions_Task.cs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public static Task WaitAsync(
throw new ArgumentNullException(nameof(target));
}

long totalMilliseconds = (long)timeout.TotalMilliseconds;
long totalMilliseconds = (long) timeout.TotalMilliseconds;
if (totalMilliseconds < -1 || totalMilliseconds > MaxSupportedTimeout)
{
throw new ArgumentOutOfRangeException(nameof(timeout));
Expand Down Expand Up @@ -120,7 +120,7 @@ public static async Task<TResult> WaitAsync<TResult>(
TimeSpan timeout,
CancellationToken cancellationToken)
{
await ((Task)target).WaitAsync(timeout, cancellationToken);
await ((Task) target).WaitAsync(timeout, cancellationToken);
return target.Result;
}
}
Expand Down

0 comments on commit 25dc4a9

Please sign in to comment.