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 8ef9a285b3
commit 412b770e80

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