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/06/14 21:01:59 UTC

[commons-io] 01/02: Sort members

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-io.git

commit a6593edc56271073c820ac7628fbe8c03336d777
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Tue Jun 14 14:45:14 2022 -0400

    Sort members
---
 src/main/java/org/apache/commons/io/file/PathUtils.java | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/file/PathUtils.java b/src/main/java/org/apache/commons/io/file/PathUtils.java
index ef45a8c5..2c56895a 100644
--- a/src/main/java/org/apache/commons/io/file/PathUtils.java
+++ b/src/main/java/org/apache/commons/io/file/PathUtils.java
@@ -199,13 +199,6 @@ public final class PathUtils {
      */
     public static final Path[] EMPTY_PATH_ARRAY = {};
 
-    /**
-     * Does allow to instantiate.
-     */
-    private PathUtils() {
-        // do not instantiate.
-    }
-
     /**
      * Accumulates file tree information in a {@link AccumulatorPathVisitor}.
      *
@@ -1704,4 +1697,11 @@ public final class PathUtils {
         return path;
     }
 
+    /**
+     * Does allow to instantiate.
+     */
+    private PathUtils() {
+        // do not instantiate.
+    }
+
 }