File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
webknossos-datastore/app/com/scalableminds/webknossos/datastore/datareaders/n5 Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -30,13 +30,13 @@ object N5CompressorFactory {
30
30
new ZlibCompressor (properties)
31
31
case " gzip" => new GzipCompressor (properties)
32
32
case " blosc" => new BloscCompressor (properties)
33
- case " zstd" => {
33
+ case " zstd" => {
34
34
val level = properties.get(" level" ) match {
35
35
case Some (IntCompressionSetting (l)) => l
36
36
case _ => throw new IllegalArgumentException (" Zstd level must be int" )
37
37
}
38
38
new ZstdCompressor (level, checksum = false )
39
39
}
40
- case _ => throw new IllegalArgumentException (" Compressor id:'" + id + " ' not supported." )
40
+ case _ => throw new IllegalArgumentException (" Compressor id:'" + id + " ' not supported." )
41
41
}
42
42
}
You can’t perform that action at this time.
0 commit comments