Files

20 lines
445 B
Java
Raw Permalink Normal View History

2019-12-30 21:33:33 +01:00
package org.jd.gui.util.sys;
/**
* Created by jianhua.fengjh on 27/11/2015.
*/
public final class SystemUtils {
static boolean isLinux() {
return System.getProperty("os.name").startsWith("Linux");
}
public static boolean isMacOS() {
return System.getProperty("os.name").startsWith("Mac");
}
public static boolean isWindows() {
return System.getProperty("os.name").startsWith("Windows");
}
}