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 <gardgreg...@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; }