This is an automated email from the ASF dual-hosted git repository.
ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git
The following commit(s) were added to refs/heads/master by this push:
new e13ac458 Format tweaks
e13ac458 is described below
commit e13ac458dab9c04ae475b688fcc5ab4ebad4d11f
Author: Gary Gregory <[email protected]>
AuthorDate: Mon Jan 23 06:59:27 2023 -0500
Format tweaks
---
.../commons/compress/archivers/zip/ZipArchiveOutputStream.java | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
index 7964c83f..1aaa6c86 100644
---
a/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
+++
b/src/main/java/org/apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java
@@ -298,12 +298,11 @@ public class ZipArchiveOutputStream extends
ArchiveOutputStream {
*/
private int method = java.util.zip.ZipEntry.DEFLATED;
-
/**
* List of ZipArchiveEntries written so far.
*/
- private final List<ZipArchiveEntry> entries =
- new LinkedList<>();
+ private final List<ZipArchiveEntry> entries = new LinkedList<>();
+
private final StreamCompressor streamCompressor;
/**