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 f77e8ba23830cf25e0cd47d3356449909f3ed3e6
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Thu Dec 21 09:11:08 2023 -0500

    Fix Javadoc error
---
 src/main/java/org/apache/commons/compress/archivers/zip/ZipFile.java | 4 ++--
 1 file changed, 2 insertions(+), 2 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 3b90f1756..9c20729aa 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
@@ -53,7 +53,7 @@ import org.apache.commons.compress.utils.IOUtils;
 import org.apache.commons.compress.utils.InputStreamStatistics;
 
 /**
- * Replacement for {@link java.util.ZipFile}.
+ * Replacement for {@link java.util.zip.ZipFile}.
  *
  * <p>
  * This class adds support for file name encodings other than UTF-8 (which is 
required to work on ZIP files created by native ZIP tools and is able to skip a
@@ -62,7 +62,7 @@ import 
org.apache.commons.compress.utils.InputStreamStatistics;
  * </p>
  *
  * <p>
- * It doesn't extend {@link java.util.zip.ZipFile} as it would have to 
reimplement all methods anyway. Like {@link java.util.ZipFile}, it uses
+ * It doesn't extend {@link java.util.zip.ZipFile} as it would have to 
reimplement all methods anyway. Like {@link java.util.zip.ZipFile}, it uses
  * SeekableByteChannel under the covers and supports compressed and 
uncompressed entries. As of Apache Commons Compress 1.3 it also transparently 
supports Zip64
  * extensions and thus individual entries and archives larger than 4 GB or 
with more than 65536 entries.
  * </p>

Reply via email to