On Mon, 5 Oct 2020 16:52:15 GMT, Daniel Fuchs <dfu...@openjdk.org> wrote:
>> Patrick Concannon has updated the pull request with a new target base due to >> a merge or a rebase. The incremental >> webrev excludes the unrelated changes brought in by the merge/rebase. The >> pull request contains three additional >> commits since the last revision: >> - 8253475: Fixed typo and bad link in HttpExchange >> - Merge remote-tracking branch 'origin/master' into JDK-8253475 >> - 8253475: Javadoc clean up in HttpExchange and HttpServer > > src/jdk.httpserver/share/classes/com/sun/net/httpserver/HttpExchange.java > line 275: > >> 273: >> 274: /** >> 275: * Used by {@linkplain #Filter Filters} to wrap either (or both) of >> this exchange's InputStream > > Are you sure about the # here? Can you double check that the generated link > is working? InputStream should be {@code > InputStream}. OutputStream below should be {@code OutputStream}. Well spotted. I have fixed the link to the `Filter` class. I also changed the first appearance of `InputStream` and `OutputSteam` to `{@link InputStream}` and `{@link OutputStream}` and subsequent occurrences to `{@code InputStream)` and `{@code OutputStream)`. The changes can be found in commit 3b4546e ------------- PR: https://git.openjdk.java.net/jdk/pull/506