Fixes for bsd

This commit is contained in:
crschnick
2024-08-03 08:19:33 +00:00
parent 081dced632
commit 675fb6972a
2 changed files with 3 additions and 5 deletions
@@ -21,10 +21,8 @@ public interface OsType {
return MACOS;
} else if (osName.contains("win")) {
return WINDOWS;
} else if (osName.contains("nux")) {
return LINUX;
} else {
throw new UnsupportedOperationException("Unknown operating system");
return LINUX;
}
}