From 48dbdbfed54bbb221a5d637f220705e1b42be472 Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Tue, 6 Jan 2026 12:49:26 +0000 Subject: [PATCH] fmt --- src/SharpCompress/Utility.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/SharpCompress/Utility.cs b/src/SharpCompress/Utility.cs index 34325970..8f2d6788 100644 --- a/src/SharpCompress/Utility.cs +++ b/src/SharpCompress/Utility.cs @@ -77,10 +77,7 @@ internal static class Utility public static void Skip(this Stream source) => source.CopyTo(Stream.Null); - public static Task SkipAsync( - this Stream source, - CancellationToken cancellationToken = default - ) + public static Task SkipAsync(this Stream source, CancellationToken cancellationToken = default) { cancellationToken.ThrowIfCancellationRequested(); return source.CopyToAsync(Stream.Null);