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 cd8ae0ff6 Remove WIP cd8ae0ff6 is described below commit cd8ae0ff694e7372eac82eaba1dd7bdeab4be8aa Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sat Jan 13 10:06:18 2024 -0500 Remove WIP --- .../java/org/apache/commons/compress/archivers/zip/ZipFile.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java index efb4555c3..6bb63af2a 100644 --- a/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java +++ b/src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java @@ -80,14 +80,6 @@ import org.apache.commons.io.input.CountingInputStream; */ public class ZipFile implements Closeable { - public static class Builder extends AbstractStreamBuilder<ZipFile, Builder> { - - @Override - public ZipFile get() throws IOException { - return null; - } - - } /** * Lock-free implementation of BoundedInputStream. The implementation uses positioned reads on the underlying archive file channel and therefore performs * significantly faster in concurrent environment.