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 85d8de7a8 Javadoc
85d8de7a8 is described below

commit 85d8de7a8d7ded3fb7c45213ea0c960183854b0c
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Mon Feb 19 10:03:32 2024 -0500

    Javadoc
---
 .../compress/archivers/dump/DumpArchiveEntry.java        | 16 +++++++++++-----
 1 file changed, 11 insertions(+), 5 deletions(-)

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 48f93df9e..a659e2695 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
@@ -342,11 +342,17 @@ public class DumpArchiveEntry implements ArchiveEntry {
      * Currently unused
      */
     private final DumpArchiveSummary summary = null;
-    // this information is available from standard index.
+
+    /**
+     * This value is available from the standard index.
+     */
     private final TapeSegmentHeader header = new TapeSegmentHeader();
     private String simpleName;
     private String originalName;
-    // this information is available from QFA index
+
+    /**
+     * This value is available from the QFA index.
+     */
     private int volume;
     private long offset;
     private int ino;
@@ -360,13 +366,13 @@ public class DumpArchiveEntry implements ArchiveEntry {
     private boolean isDeleted;
 
     /**
-     * Default constructor.
+     * Constructs a default instance.
      */
     public DumpArchiveEntry() {
     }
 
     /**
-     * Constructor taking only file name.
+     * Constructs a new instance with only names.
      *
      * @param name       path name
      * @param simpleName actual file name.
@@ -377,7 +383,7 @@ public class DumpArchiveEntry implements ArchiveEntry {
     }
 
     /**
-     * Constructor taking name, inode and type.
+     * Constructs a new instance with name, inode and type.
      *
      * @param name       the name
      * @param simpleName the simple name

Reply via email to