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 2021/09/03 18:18:52 UTC

[commons-io] 02/03: Minor cleanup.

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 a873e46f90891bc7963133be8eac94107e5cfbb6
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Sep 3 14:06:13 2021 -0400

    Minor cleanup.
---
 src/main/java/org/apache/commons/io/FileSystem.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/FileSystem.java b/src/main/java/org/apache/commons/io/FileSystem.java
index dadf719..a4c386c 100644
--- a/src/main/java/org/apache/commons/io/FileSystem.java
+++ b/src/main/java/org/apache/commons/io/FileSystem.java
@@ -134,10 +134,10 @@ public enum FileSystem {
             return LINUX;
         }
         if (IS_OS_MAC) {
-            return FileSystem.MAC_OSX;
+            return MAC_OSX;
         }
         if (IS_OS_WINDOWS) {
-            return FileSystem.WINDOWS;
+            return WINDOWS;
         }
         return GENERIC;
     }