Skip to content

Commit 5028161

Browse files
committed
Correct compression naming for deflate compression
1 parent c851812 commit 5028161

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BlueMapCore/src/main/java/de/bluecolored/bluemap/core/storage/Compression.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public enum Compression {
4040

4141
NONE("none", "", out -> out, in -> in),
4242
GZIP("gzip", ".gz", GZIPOutputStream::new, GZIPInputStream::new),
43-
ZLIB("zlib", ".zlib", DeflaterOutputStream::new, DeflaterInputStream::new),
43+
DEFLATE("deflate", ".deflate", DeflaterOutputStream::new, DeflaterInputStream::new),
4444
ZSTD("zstd", ".zst", ZstdOutputStream::new, ZstdInputStream::new);
4545

4646
private final String typeId;

0 commit comments

Comments
 (0)