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 40d6d6c855078ae844b43a271ffbdbf5da593920
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 8 11:11:20 2022 -0500

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

diff --git 
a/src/main/java/org/apache/commons/compress/harmony/unpack200/SegmentConstantPoolArrayCache.java
 
b/src/main/java/org/apache/commons/compress/harmony/unpack200/SegmentConstantPoolArrayCache.java
index 264a994a..f3b33d17 100644
--- 
a/src/main/java/org/apache/commons/compress/harmony/unpack200/SegmentConstantPoolArrayCache.java
+++ 
b/src/main/java/org/apache/commons/compress/harmony/unpack200/SegmentConstantPoolArrayCache.java
@@ -106,7 +106,6 @@ public class SegmentConstantPoolArrayCache {
         HashMap<String, List<Integer>> primaryTable;
 
         public CachedArray(final String[] array) {
-            super();
             this.primaryArray = array;
             this.lastKnownSize = array.length;
             this.primaryTable = new HashMap<>(lastKnownSize);

Reply via email to