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

commit 3cb0b1ba476f67a8b7a55a9094e1c626daf88801
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Jul 6 22:53:19 2023 -0400

    Format tweak
---
 .../apache/commons/compress/archivers/zip/ZipArchiveOutputStream.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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 7380eab6..9365eb6b 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
@@ -785,7 +785,7 @@ public class ZipArchiveOutputStream extends 
ArchiveOutputStream {
         if (isSplitZip) {
             // calculate the disk number for every central file header,
             // this will be used in writing End Of Central Directory and Zip64 
End Of Central Directory
-            final int currentSplitSegment = 
((ZipSplitOutputStream)this.outputStream).getCurrentSplitSegmentIndex();
+            final int currentSplitSegment = ((ZipSplitOutputStream) 
this.outputStream).getCurrentSplitSegmentIndex();
             if (numberOfCDInDiskData.get(currentSplitSegment) == null) {
                 numberOfCDInDiskData.put(currentSplitSegment, 1);
             } else {

Reply via email to