-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
None
// test long paths on windows
// And these long pathes cannot be handled on Solaris and Mac platforms
*** REFACTOR extract method this code block to a method testLongPathOnWindows ***
if (isWindows) {
String name = fileName;
while (name.length() < MAX_LENGTH) {
testLongPath (20, name, false);
testLongPath (20, name, true);
name = getNextName(name);
}
}
}
private static void testLongPathOnWindows () throws Exception {
if (isWindows) {
String name = fileName;
while (name.length() < MAX_LENGTH) {
testLongPath (20, name, false);
testLongPath (20, name, true);
name = getNextName(name);
}
}
}
- links to
-
Review(master) openjdk/jdk/26193