From 1eaf3e6294fa4b0ba13899bb78af65ef119f36af Mon Sep 17 00:00:00 2001 From: Adam Hathcock Date: Mon, 8 Dec 2025 11:00:29 +0000 Subject: [PATCH] format with csharpier --- src/SharpCompress/IO/ProgressReportingStream.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/SharpCompress/IO/ProgressReportingStream.cs b/src/SharpCompress/IO/ProgressReportingStream.cs index 86600c0e..5ed02835 100644 --- a/src/SharpCompress/IO/ProgressReportingStream.cs +++ b/src/SharpCompress/IO/ProgressReportingStream.cs @@ -45,7 +45,10 @@ internal sealed class ProgressReportingStream : Stream public override long Position { get => _baseStream.Position; - set => throw new NotSupportedException("Directly setting Position is not supported in ProgressReportingStream to maintain progress tracking integrity."); + set => + throw new NotSupportedException( + "Directly setting Position is not supported in ProgressReportingStream to maintain progress tracking integrity." + ); } public override void Flush() => _baseStream.Flush();