-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
None
Refactor remove the test logic for Windows OS and replace with jtreg check for os
String name = System.getProperty("os.name");
if (name.startsWith("Windows")) { . . .
replace with
* @requires os.family == "windows"
String name = System.getProperty("os.name");
if (name.startsWith("Windows")) { . . .
replace with
* @requires os.family == "windows"
- relates to
-
JDK-8355578 [java.net] Use @requires tag instead of exiting based on "os.name" property value
-
- Resolved
-