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 2023/03/12 22:04:09 UTC

[commons-compress] branch master updated: Fix Javadoc warning

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 19e1c436 Fix Javadoc warning
19e1c436 is described below

commit 19e1c436a4653abbc44cf2e7fe78b4ff932f146e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Mar 12 18:04:04 2023 -0400

    Fix Javadoc warning
    
    Keep methods in AB order
---
 .../compress/archivers/tar/TarArchiveEntry.java       | 19 ++++++++++---------
 1 file changed, 10 insertions(+), 9 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 68c2aa5a..8d897831 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
@@ -950,6 +950,16 @@ public class TarArchiveEntry implements ArchiveEntry, TarConstants, EntryStreamO
         return mTime;
     }
 
+    /**
+     * Get this entry's link flag.
+     *
+     * @return this entry's link flag.
+     * @since 1.23
+     */
+    public byte getLinkFlag() {
+        return this.linkFlag;
+    }
+
     /**
      * Get this entry's link name.
      *
@@ -2130,14 +2140,5 @@ public class TarArchiveEntry implements ArchiveEntry, TarConstants, EntryStreamO
         return offset;
     }
 
-    /**
-     * Get this entry's link flag.
-     *
-     * @since 1.23
-     */
-    public byte getLinkFlag() {
-        return this.linkFlag;
-    }
-
 }