You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2017/06/16 07:36:45 UTC

commons-compress git commit: remove redundant super-interface

Repository: commons-compress
Updated Branches:
  refs/heads/master fd7b3c165 -> 7254daa3f


remove redundant super-interface


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/7254daa3
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/7254daa3
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/7254daa3

Branch: refs/heads/master
Commit: 7254daa3f84a2b7780050da936304ea42db324ef
Parents: fd7b3c1
Author: Stefan Bodewig <bo...@apache.org>
Authored: Fri Jun 16 09:36:27 2017 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Fri Jun 16 09:36:27 2017 +0200

----------------------------------------------------------------------
 .../commons/compress/utils/FixedLengthBlockOutputStream.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/7254daa3/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java b/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
index e6fee61..8fe6d20 100644
--- a/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
+++ b/src/main/java/org/apache/commons/compress/utils/FixedLengthBlockOutputStream.java
@@ -47,8 +47,7 @@ import java.util.concurrent.atomic.AtomicBoolean;
  *
  * @since 1.15
  */
-public class FixedLengthBlockOutputStream extends OutputStream implements WritableByteChannel,
-    AutoCloseable {
+public class FixedLengthBlockOutputStream extends OutputStream implements WritableByteChannel {
 
     private final WritableByteChannel out;
     private final int blockSize;