On Thu, 23 Sep 2021 20:04:46 GMT, Andrey Turbanov
<[email protected]> 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.
>
> src/jdk.internal.jvmstat/share/classes/sun/jvmstat/monitor/HostIdentifier.java
> line 346:
>
>> 344: String authority = vmid.getAuthority();
>> 345:
>> 346: if ("file".equals(scheme)) {
>
> I'm not sure. Brackets in which statement do mean here?
Sorry, this fragment is good.
-------------
PR: https://git.openjdk.java.net/jdk/pull/5638