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 89c763317 Javadoc
89c763317 is described below
commit 89c76331791566ddab185c6ccf0a90e3fb881b15
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Dec 17 14:30:44 2023 -0500
Javadoc
---
.../java/org/apache/commons/compress/archivers/zip/ZipFile.java | 8 ++++----
.../java/org/apache/commons/compress/harmony/pack200/IntList.java | 2 +-
2 files changed, 5 insertions(+), 5 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 4d91b2fe7..3b90f1756 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,22 +53,22 @@ import org.apache.commons.compress.utils.IOUtils;
import org.apache.commons.compress.utils.InputStreamStatistics;
/**
- * Replacement for {@code java.util.ZipFile}.
+ * Replacement for {@link java.util.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
* preamble like the one found in self extracting archives. Furthermore it
returns instances of
- * {@code org.apache.commons.compress.archivers.zip.ZipArchiveEntry} instead
of {@code java.util.zip.ZipEntry}.
+ * {@code org.apache.commons.compress.archivers.zip.ZipArchiveEntry} instead
of {@link java.util.zip.ZipEntry}.
* </p>
*
* <p>
- * It doesn't extend {@code java.util.zip.ZipFile} as it would have to
reimplement all methods anyway. Like {@code 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.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>
*
* <p>
- * The method signatures mimic the ones of {@code java.util.zip.ZipFile}, with
a couple of exceptions:
+ * The method signatures mimic the ones of {@link java.util.zip.ZipFile}, with
a couple of exceptions:
*
* <ul>
* <li>There is no getName method.</li>
diff --git
a/src/main/java/org/apache/commons/compress/harmony/pack200/IntList.java
b/src/main/java/org/apache/commons/compress/harmony/pack200/IntList.java
index 9265479fc..a68dc0198 100644
--- a/src/main/java/org/apache/commons/compress/harmony/pack200/IntList.java
+++ b/src/main/java/org/apache/commons/compress/harmony/pack200/IntList.java
@@ -19,7 +19,7 @@ package org.apache.commons.compress.harmony.pack200;
import java.util.Arrays;
/**
- * IntList is based on {@code java.util.ArrayList}, but is written
specifically for ints in order to reduce boxing and unboxing to Integers,
reduce the memory
+ * IntList is based on {@link java.util.ArrayList}, but is written
specifically for ints in order to reduce boxing and unboxing to Integers,
reduce the memory
* required and improve performance of pack200.
*/
public class IntList {