You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2020/02/14 12:33:16 UTC

[commons-compress] branch master updated: (doc) minor javadoc fix

This is an automated email from the ASF dual-hosted git repository.

bodewig 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 bfc1473  (doc) minor javadoc fix
     new 1e8d131  Merge pull request #93 from DPUkyle/km/doc-fix
bfc1473 is described below

commit bfc1473fca0501a82f7dfdcdceb64a802d947195
Author: Kyle Moore <gi...@kylemoore.com>
AuthorDate: Thu Feb 13 22:28:35 2020 -0800

    (doc) minor javadoc fix
---
 .../org/apache/commons/compress/archivers/tar/TarArchiveEntry.java    | 4 ++--
 1 file changed, 2 insertions(+), 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 b240157..f180780 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
@@ -696,9 +696,9 @@ public class TarArchiveEntry implements ArchiveEntry, TarConstants {
     }
 
     /**
-     * Set this entry's modification time.
+     * Get this entry's modification time.
      *
-     * @return time This entry's new modification time.
+     * @return This entry's modification time.
      */
     public Date getModTime() {
         return new Date(modTime * MILLIS_PER_SECOND);