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 2022/12/08 16:15:38 UTC

[commons-compress] 07/38: Remove redundant call 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

commit d8a4b5b2b29fc9618d88ae279def97d15c9dafcd
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Thu Dec 8 11:04:16 2022 -0500

    Remove redundant call to super()
---
 .../org/apache/commons/compress/harmony/unpack200/AttributeLayout.java   | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayout.java b/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayout.java
index c554de14..41e07726 100644
--- a/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayout.java
+++ b/src/main/java/org/apache/commons/compress/harmony/unpack200/AttributeLayout.java
@@ -127,7 +127,6 @@ public class AttributeLayout implements IMatcher {
 
     public AttributeLayout(final String name, final int context, final String layout, final int index,
         final boolean isDefault) throws Pack200Exception {
-        super();
         this.index = index;
         this.context = context;
         if (index >= 0) {