add Zstd decompress lib check in initalizer

This commit is contained in:
James Seibel
2025-12-13 15:48:05 -06:00
parent 5be5c5a5bc
commit 6d3e30d425
@@ -57,6 +57,7 @@ public class Initializer
// will throw an error (not an exception)
Class<?> lz4Compressor = LZ4FrameOutputStream.class;
Class<?> zstdCompressor = ZstdOutputStream.class;
Runnable zstdBlockDecompress = () -> { com.github.luben.zstd.Zstd.decompress(new byte [0]); };
Class<?> lzmaCompressor = XZOutputStream.class;
//Class<?> networking = ByteBuf.class;
Class<?> config = com.electronwill.nightconfig.core.Config.class;