RFR: 8266567: Fix javadoc tag references in sun.management.jmxremote.ConnectorBootstrap [v2]

Pavel Rappo prappo at openjdk.java.net
Wed May 5 18:39:14 UTC 2021


> This fixes two javadoc tag references and several typos. References are fixed by removing whitespace before the opening `(`. That whitespace caused the opening `(` and the rest of the reference to be parsed as a link label.
> 
> Since we are here, I think this class could also benefit from using modern APIs. This should be done in a separate PR though. For example:
> 
> 1. Numerous instances of `Boolean.valueOf( <var> ).booleanValue()` could be changed to `Boolean.parseBoolean( <var> )`
> 2. `throw (IllegalArgumentException) new IllegalArgumentException(msg).initCause(e);` could be changed to `throw new IllegalArgumentException(msg, e);`

Pavel Rappo has updated the pull request incrementally with one additional commit since the last revision:

  Fixed more typos

-------------

Changes:
  - all: https://git.openjdk.java.net/jdk/pull/3885/files
  - new: https://git.openjdk.java.net/jdk/pull/3885/files/b8113178..6eea552e

Webrevs:
 - full: https://webrevs.openjdk.java.net/?repo=jdk&pr=3885&range=01
 - incr: https://webrevs.openjdk.java.net/?repo=jdk&pr=3885&range=00-01

  Stats: 3 lines in 1 file changed: 0 ins; 0 del; 3 mod
  Patch: https://git.openjdk.java.net/jdk/pull/3885.diff
  Fetch: git fetch https://git.openjdk.java.net/jdk pull/3885/head:pull/3885

PR: https://git.openjdk.java.net/jdk/pull/3885


More information about the serviceability-dev mailing list