Removed check for OS from FuseVolume#isSupportedStatic

This commit is contained in:
JaniruTEC
2020-07-20 21:23:35 +02:00
parent 45f6caa7bd
commit c59d3cd03f

View File

@@ -171,7 +171,7 @@ public class FuseVolume implements Volume {
}
public static boolean isSupportedStatic() {
return (SystemUtils.IS_OS_MAC_OSX || SystemUtils.IS_OS_LINUX || SystemUtils.IS_OS_WINDOWS) && FuseMountFactory.isFuseSupported();
return FuseMountFactory.isFuseSupported();
}
}