This is an automated email from the ASF dual-hosted git repository.
garydgregory 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 ff780401c Fix Javadoc
ff780401c is described below
commit ff780401c1b6ac792d55545bb32c316bb3c6a207
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Jul 2 23:04:41 2026 +0000
Fix Javadoc
---
.../org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java
b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java
index 90906bb81..bd74dd663 100644
---
a/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java
+++
b/src/main/java/org/apache/commons/compress/archivers/dump/DumpArchiveEntry.java
@@ -29,7 +29,7 @@
/**
* This class represents an entry in a Dump archive. It consists of the
entry's header, the entry's File and any extended attributes.
* <p>
- * DumpEntries that are created from the header bytes read from an archive are
instantiated with the DumpArchiveEntry( byte[] ) constructor. These entries will
+ * DumpEntries that are created from the header bytes read from an archive are
instantiated with {@link DumpArchiveEntry#parse(byte[])}. These entries will
* be used when extracting from or listing the contents of an archive. These
entries have their header filled in using the header bytes. They also set the
File
* to null, since they reference an archive entry not a file.
* </p>