format with csharpier

This commit is contained in:
Adam Hathcock
2025-12-08 11:00:29 +00:00
parent fd453e946d
commit 1eaf3e6294

View File

@@ -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();