RED-6497: Removed explicit variable initialization because its marked as a checkstyle violation.

This commit is contained in:
Viktor Seifert 2023-03-30 14:20:55 +02:00
parent d74b8bf4ba
commit 65884ce42b

View File

@ -27,7 +27,7 @@ public class FileSystemBackedArchiver implements AutoCloseable {
private final File tempFile;
private final ZipOutputStream zipOutputStream;
private long tempFileLength = 0;
private long tempFileLength;
@SneakyThrows