diff --git a/src/SharpCompress/IO/ListeningStream.cs b/src/SharpCompress/IO/ListeningStream.cs index a5a76dd1..1bab99d2 100644 --- a/src/SharpCompress/IO/ListeningStream.cs +++ b/src/SharpCompress/IO/ListeningStream.cs @@ -20,6 +20,7 @@ namespace SharpCompress.IO { Stream.Dispose(); } + base.Dispose(disposing); } public Stream Stream { get; } @@ -74,10 +75,5 @@ namespace SharpCompress.IO { Stream.Write(buffer, offset, count); } - - public override void WriteByte(byte value) - { - Stream.WriteByte(value); - } } } \ No newline at end of file