You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2022/03/18 18:34:00 UTC

[commons-compress] branch master updated: Fix Javadoc error: "error: unexpected end tag:

"

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 85ce16d  Fix Javadoc error: "error: unexpected end tag: </p>"
85ce16d is described below

commit 85ce16d729a018965a22c9478d5dcf906a5c0424
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Mar 18 14:33:57 2022 -0400

    Fix Javadoc error: "error: unexpected end tag: </p>"
---
 .../org/apache/commons/compress/archivers/tar/TarArchiveEntry.java     | 3 +--
 1 file changed, 1 insertion(+), 2 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 6233079..67e1a6e 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
@@ -163,6 +163,7 @@ import org.apache.commons.compress.utils.IOUtils;
  *
  * <p>
  * The C structure for the xstar-specific parts of a xstar Tar Entry's header is:
+ * </p>
  * <pre>
  * struct xstar_in_header {
  *  char fill[345];         // offset 0     Everything before t_prefix
@@ -179,11 +180,9 @@ import org.apache.commons.compress.utils.IOUtils;
  *  char xmagic[4];         // offset 508   "tar"
  * };
  * </pre>
- * </p>
  *
  * @NotThreadSafe
  */
-
 public class TarArchiveEntry implements ArchiveEntry, TarConstants, EntryStreamOffsets {
     private static final TarArchiveEntry[] EMPTY_TAR_ARCHIVE_ENTRY_ARRAY = new TarArchiveEntry[0];