RFR: 8274190: Use String.equals instead of String.compareTo in jdk.internal.jvmstat

Serguei Spitsyn sspitsyn at openjdk.java.net
Thu Sep 23 19:42:55 UTC 2021


On Wed, 22 Sep 2021 19:20:35 GMT, Andrey Turbanov <github.com+741251+turbanoff at openjdk.org> wrote:

> In several places, String.compareTo was _compared_ with 0 ( via `== 0` or `!= 0`).
> Instead of this, we can use String.equals calls. `String.equals` is faster and shorter.

Marked as reviewed by sspitsyn (Reviewer).

Looks good.
Also, it would be nice to fix formatting nits I inlined in files.

src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/HostIdentifier.java line 109:

> 107:      */
> 108:     private URI canonicalize(String uriString) throws URISyntaxException {
> 109:         if ((uriString == null) || (uriString.equals("localhost"))) {

Nit: Not your issue but you can also get rid of unneeded brackets `()`.

src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/HostIdentifier.java line 346:

> 344:         String authority = vmid.getAuthority();
> 345: 
> 346:         if ("file".equals(scheme)) {

Nit: Not your issue but you can also get rid of unneeded brackets ().

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

PR: https://git.openjdk.java.net/jdk/pull/5638Marked as reviewed by sspitsyn (Reviewer).


More information about the serviceability-dev mailing list