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 ef5dc2885 Remove method no longer needed now that we extend 
FilterOutputStream
     new 3f3bc678d Merge branch 'master' of 
https://gitbox.apache.org/repos/asf/commons-compress.git
ef5dc2885 is described below

commit ef5dc288524b3b7fcecf00bbd7930ccd2d66bf4a
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Wed Jul 3 13:45:09 2024 -0400

    Remove method no longer needed now that we extend FilterOutputStream
---
 .../commons/compress/archivers/tar/TarArchiveOutputStream.java       | 5 -----
 1 file changed, 5 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
index 5fb1c226d..7692e7578 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java
@@ -411,11 +411,6 @@ public class TarArchiveOutputStream extends 
ArchiveOutputStream<TarArchiveEntry>
         super.finish();
     }
 
-    @Override
-    public void flush() throws IOException {
-        out.flush();
-    }
-
     @Override
     public long getBytesWritten() {
         return countingOut.getByteCount();

Reply via email to