|
|
@ -127,7 +127,7 @@ public class PlatformDetector { |
|
|
|
|
|
|
|
|
|
|
|
//如果if条件全部不符合,就会陷入死循环,代码存在风险
|
|
|
|
//如果if条件全部不符合,就会陷入死循环,代码存在风险
|
|
|
|
//throw new UnsatisfiedLinkError("Unsupported vendor: " + getName());
|
|
|
|
//throw new UnsatisfiedLinkError("Unsupported vendor: " + getName());
|
|
|
|
return StringUtils.EMPTY; |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static String getLinuxOsReleaseId() { |
|
|
|
private static String getLinuxOsReleaseId() { |
|
|
@ -148,7 +148,7 @@ public class PlatformDetector { |
|
|
|
|
|
|
|
|
|
|
|
//linux系统下如果缺失/etc/os-release,/usr/lib/os-release,/etc/redhat-release三个文件,就会和getName方法就会一直互相调用
|
|
|
|
//linux系统下如果缺失/etc/os-release,/usr/lib/os-release,/etc/redhat-release三个文件,就会和getName方法就会一直互相调用
|
|
|
|
//throw new UnsatisfiedLinkError("Unsupported linux vendor: " + getName());
|
|
|
|
//throw new UnsatisfiedLinkError("Unsupported linux vendor: " + getName());
|
|
|
|
return StringUtils.EMPTY; |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private static String parseLinuxOsReleaseFile(final File file) { |
|
|
|
private static String parseLinuxOsReleaseFile(final File file) { |
|
|
|