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 c178f71c9 Javadoc c178f71c9 is described below commit c178f71c9cc887de3ec75dcea4fb5be749c1e69b Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 21 07:55:51 2024 -0400 Javadoc --- .../org/apache/commons/compress/archivers/tar/TarArchiveEntry.java | 3 ++- .../apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java | 2 +- .../apache/commons/compress/archivers/tar/TarArchiveStructSparse.java | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java index 88dcfba48..e02eeb3a2 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveEntry.java @@ -56,7 +56,8 @@ import org.apache.commons.io.file.attribute.FileTimes; import org.apache.commons.lang3.SystemProperties; /** - * This class represents an entry in a Tar archive. It consists of the entry's header, as well as the entry's File. Entries can be instantiated in one of three + * An entry in a <a href="https://www.gnu.org/software/tar/manual/html_node/Standard.html">Tar archive</a>. + * It consists of the entry's header, as well as the entry's File. Entries can be instantiated in one of three * ways, depending on how they are to be used. * <p> * TarEntries that are created from the header bytes read from an archive are instantiated with the {@link TarArchiveEntry#TarArchiveEntry(byte[])} constructor. diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java index b462d8751..829b141c6 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveSparseEntry.java @@ -23,7 +23,7 @@ import java.util.ArrayList; import java.util.List; /** - * This class represents a sparse entry in a Tar archive. + * A sparse entry in a <a href="https://www.gnu.org/software/tar/manual/html_node/Standard.html">Tar archive</a>. * * <p> * The C structure for a sparse entry is: diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveStructSparse.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveStructSparse.java index 39cf9ea5f..84a63247f 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveStructSparse.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveStructSparse.java @@ -21,7 +21,7 @@ package org.apache.commons.compress.archivers.tar; import java.util.Objects; /** - * This class represents struct sparse in a Tar archive. + * A {@code struct sparse} in a <a href="https://www.gnu.org/software/tar/manual/html_node/Standard.html">Tar archive</a>. * <p> * Whereas, "struct sparse" is: * </p>