You've already forked macports-ports
mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
20 lines
445 B
Java
20 lines
445 B
Java
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");
|
|
}
|
|
|
|
} |