-
Bug
-
Resolution: Won't Fix
-
P3
-
9
Investigate this code. Windows XP does not support symlinks but Windows 7 and above does.
IOUtils.java
public static boolean isNotSymbolicLink(File file) {
//no symlinks on windows
if (Platform.getPlatform() == Platform.WINDOWS) {
return true;
}
IOUtils.java
public static boolean isNotSymbolicLink(File file) {
//no symlinks on windows
if (Platform.getPlatform() == Platform.WINDOWS) {
return true;
}