forked from fanruan/finekit
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
348 B
18 lines
348 B
package com.fanruan.api.macro; |
|
|
|
import com.fr.stable.OperatingSystem; |
|
|
|
/** |
|
* @author Kalven |
|
* @version 10.0 |
|
* Created by Kalven on 2019/8/31 |
|
*/ |
|
public class OperatingSystemKit { |
|
/** |
|
* 判断是否为windows |
|
* @return 判断结果 |
|
*/ |
|
public static boolean isWindows() { |
|
return OperatingSystem.isWindows(); |
|
} |
|
}
|
|
|