Skip to content

Commit

Permalink
lint changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ersan Bozduman committed Sep 20, 2023
1 parent 69fabf8 commit 802fd9d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Minio/Helper/OperationsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,9 @@ async Task callbackAsync(Stream stream, CancellationToken cancellationToken)
#else
var dest = new FileStream(tempFileName, FileMode.Create, FileAccess.Write);
await using (dest.ConfigureAwait(false))
await stream.CopyToAsync(dest, cancellationToken).ConfigureAwait(false);
{
await stream.CopyToAsync(dest, cancellationToken).ConfigureAwait(false);
}
#endif
}

Expand Down

0 comments on commit 802fd9d

Please sign in to comment.