Skip to content

Commit

Permalink
minor refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
raydac committed Jun 22, 2024
1 parent 5e6e985 commit 7be62e3
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ public Boolean get() {
return IS_OS_WINDOWS;
}
}),
LINUX("linux", "", new Supplier<Boolean>() {
UNIX("unix", "", new Supplier<Boolean>() {
@Override
@Nonnull
public Boolean get() {
return IS_OS_LINUX;
return SystemUtils.IS_OS_UNIX;
}
}),
UNIX("unix", "", new Supplier<Boolean>() {
LINUX("linux", "", new Supplier<Boolean>() {
@Override
@Nonnull
public Boolean get() {
return SystemUtils.IS_OS_UNIX;
return IS_OS_LINUX;
}
}),
MAC("macos", "", new Supplier<Boolean>() {
Expand Down

0 comments on commit 7be62e3

Please sign in to comment.