Skip to content

Commit 573bcbe

Browse files
authored
reformat backend (#8706)
the formatter was unhappy in the CI
1 parent 29acd65 commit 573bcbe

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webknossos-datastore/app/com/scalableminds/webknossos/datastore/datareaders/n5/N5CompressorFactory.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ object N5CompressorFactory {
3030
new ZlibCompressor(properties)
3131
case "gzip" => new GzipCompressor(properties)
3232
case "blosc" => new BloscCompressor(properties)
33-
case "zstd" => {
33+
case "zstd" => {
3434
val level = properties.get("level") match {
3535
case Some(IntCompressionSetting(l)) => l
3636
case _ => throw new IllegalArgumentException("Zstd level must be int")
3737
}
3838
new ZstdCompressor(level, checksum = false)
3939
}
40-
case _ => throw new IllegalArgumentException("Compressor id:'" + id + "' not supported.")
40+
case _ => throw new IllegalArgumentException("Compressor id:'" + id + "' not supported.")
4141
}
4242
}

0 commit comments

Comments
 (0)