|
@@ -15,6 +15,9 @@ public class BaseUtils {
|
|
|
return ResourceUtil.readUtf8Str(pathFromSourceRoot);
|
|
|
}
|
|
|
|
|
|
+ public static Boolean isWindows() {
|
|
|
+ return System.getProperty("os.name").contains("Windows");
|
|
|
+ }
|
|
|
public static String toString(Object o) {
|
|
|
return JSONObject.toJSONString(o, SerializerFeature.WriteMapNullValue);
|
|
|
|