diff --git a/src/SharpCompress/IO/SharpCompressStream.cs b/src/SharpCompress/IO/SharpCompressStream.cs index 3100cdd3..f34f9fd1 100644 --- a/src/SharpCompress/IO/SharpCompressStream.cs +++ b/src/SharpCompress/IO/SharpCompressStream.cs @@ -27,7 +27,9 @@ public class SharpCompressStream : Stream, IStreamStack { if (_bufferPosition < 0 || _bufferPosition > _bufferedLength) { - throw new InvalidOperationException("Buffer state is inconsistent: _bufferPosition is out of range."); + throw new InvalidOperationException( + "Buffer state is inconsistent: _bufferPosition is out of range." + ); } }