mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-23 07:25:11 +00:00
CSharpier fixes after copilot tweaks.
This commit is contained in:
@@ -396,10 +396,7 @@ public class ZipWriter : AbstractWriter
|
||||
}
|
||||
case ZipCompressionMethod.ZStandard:
|
||||
{
|
||||
return new ZstdSharp.CompressionStream(
|
||||
counting,
|
||||
compressionLevel
|
||||
);
|
||||
return new ZstdSharp.CompressionStream(counting, compressionLevel);
|
||||
}
|
||||
default:
|
||||
{
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SharpCompress.Test.Zip;
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user