Remove redundant Rewind() call after StartRecording()

Co-authored-by: adamhathcock <527620+adamhathcock@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2026-02-11 17:52:28 +00:00
parent 649729d520
commit 3ad39f96da

View File

@@ -230,7 +230,6 @@ public class TarFactory
using var fileStream = fileInfo.OpenRead();
var compressedStream = new SharpCompressStream(fileStream);
compressedStream.StartRecording();
compressedStream.Rewind();
var decompStream = wrapper.CreateStream(compressedStream);
var memoryStream = new MemoryStream();