On Fri, 3 Oct 2025 17:34:24 GMT, Mahendra Chhipa <[email protected]> wrote:
>> Update SimpleHttpServer class to use SimpleFileServer.
>
> Mahendra Chhipa has updated the pull request incrementally with one
> additional commit since the last revision:
>
> Implemented review comments.
test/jaxp/javax/xml/jaxp/unittest/catalog/CatalogFileInputTest.java line 103:
> 101: httpserver.start();
> 102: remoteFilePath = "http:" +
> jdk.test.lib.net.URIBuilder.newBuilder().host(httpserver.getAddress().getAddress()).
> 103:
> port(httpserver.getAddress().getPort()).build().toString() +
> REMOTE_FILE_LOCATION;
Suggestion:
remoteFilePath = jdk.test.lib.net.URIBuilder.newBuilder()
.scheme("http")
.host(httpserver.getAddress().getAddress())
.port(httpserver.getAddress().getPort())
.build().toString() + REMOTE_FILE_LOCATION;
-------------
PR Review Comment: https://git.openjdk.org/jdk/pull/27608#discussion_r2402805191