You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/20 22:56:23 UTC

[commons-compress] branch master updated: Remove redundant calls to super().

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 32012f9  Remove redundant calls to super().
32012f9 is described below

commit 32012f945b85c6dcfd2c8c3bb04d3ee27c6f184f
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 20 17:56:18 2020 -0500

    Remove redundant calls to super().
---
 .../java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java
index 561834c..48527c3 100644
--- a/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java
+++ b/src/main/java/org/apache/commons/compress/archivers/ArchiveStreamFactory.java
@@ -274,7 +274,6 @@ public class ArchiveStreamFactory implements ArchiveStreamProvider {
      * @since 1.10
      */
     public ArchiveStreamFactory(final String encoding) {
-        super();
         this.encoding = encoding;
         // Also set the original field so can continue to use it.
         this.entryEncoding = encoding;