module jdk.incubator.httpclient {
requires java.base;
exports jdk.incubator.http;
}
"requires java.base" is unnecessary, and it's confusing why jdk.incubator.httpclient requires java.base while other modules don't.
requires java.base;
exports jdk.incubator.http;
}
"requires java.base" is unnecessary, and it's confusing why jdk.incubator.httpclient requires java.base while other modules don't.
- duplicates
-
JDK-8182416 Clean up module-info.java like move requires transitive adjacent to exports
-
- Closed
-