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 <[email protected]> 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) {
