Skip to content

Commit beef084

Browse files
committed
fix: removed not solid lznt1 deflater
1 parent c5e5139 commit beef084

4 files changed

Lines changed: 1 addition & 156 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Archive Formats
106106
> 7-Zip, AR, CAB, CFB, CPIO, ISO, MSI, RAR, RPM, TAR, XAR, ZIP
107107
108108
Compression Formats
109-
> BGZF, Brotli, Bzip2, Gzip, Kanzi, LZ4, Lzip, LZMA, LZFSE, LZNT1, LZO, LZVN, LZW, LZX, MinLZ, S2, Snappy, XZ, zlib, zstd
109+
> BGZF, Brotli, Bzip2, Gzip, Kanzi, LZ4, Lzip, LZMA, LZFSE, LZO, LZVN, LZW, LZX, MinLZ, S2, Snappy, XZ, zlib, zstd
110110
111111
Cryptographic Hashes
112112
> BLAKE2S-256, BLAKE2B-256, BLAKE2B-384, BLAKE2B-512, BLAKE3-256, BLAKE3-512, GOST2012-256, GOST2012-512, HAS-160, LSH-256, LSH-512, MD2, MD4, MD5, MD6, RIPEMD-160, SHAKE128, SHAKE256, SHA1, SHA224, SHA256, SHA512, SHA3, SHA3-224, SHA3-256, SHA3-384, SHA3-512, Skein-224, Skein-256, Skein-384, Skein-512, SM3, Whirlpool

internal/pkg/adapters/deflates/lznt1/lznt1.go

Lines changed: 0 additions & 110 deletions
This file was deleted.

internal/pkg/adapters/deflates/lznt1/lznt1_test.go

Lines changed: 0 additions & 43 deletions
This file was deleted.

internal/sys/loader/registry.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ import (
3131
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lz4"
3232
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lzfse"
3333
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lzip"
34-
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lznt1"
3534
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lzo"
3635
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/lzw"
3736
"go.foxforensics.eu/fox/v4/internal/pkg/adapters/deflates/minlz"
@@ -92,7 +91,6 @@ func RegisterDeflates() {
9291
{"lzip", lzip.Detect, lzip.Deflate},
9392
{"lzo", lzo.Detect, lzo.Deflate},
9493
{"lzfse", lzfse.Detect, lzfse.Deflate},
95-
{"lznt1", lznt1.Detect, lznt1.Deflate},
9694
{"lzw", lzw.Detect, lzw.Deflate},
9795
{"minlz", minlz.Detect, minlz.Deflate},
9896
{"s2", s2.Detect, s2.Deflate},

0 commit comments

Comments
 (0)