ppkarwasz commented on code in PR #706:
URL: https://github.com/apache/commons-compress/pull/706#discussion_r2351875844


##########
src/main/java/org/apache/commons/compress/archivers/ArchiveInputStream.java:
##########
@@ -88,6 +89,20 @@ public Iterator<E> unwrap() {
 
     }
 
+    /**
+     * Generic builder for ArchiveInputStream instances.
+     *
+     * @param <T> The type of {@link ArchiveInputStream} to build.
+     * @param <B> The type of the concrete Builder.
+     * @since 1.29.0
+     */
+    public abstract static class Builder<T extends ArchiveInputStream<?>, B 
extends Builder<T, B>> extends AbstractStreamBuilder<T, B> {
+
+        protected Builder() {

Review Comment:
   Fixed in 
https://github.com/apache/commons-compress/pull/706/commits/8cf58ad7cb397857b5fc9d5fd172af692e1ce7c4



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@commons.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to