Re: RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array [v2]

2021-09-06 Thread Claes Redestad
On Mon, 6 Sep 2021 06:45:07 GMT, q2q-2q2 wrote: >> Shortcut String equality checks by checking equality of the value array > > q2q-2q2 has updated the pull request incrementally with one additional commit > since the last revision: > > JDK-8272192 Shortcut String equality checks by checking

Re: RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array [v2]

2021-09-06 Thread David Holmes
On Mon, 6 Sep 2021 06:45:07 GMT, q2q-2q2 wrote: >> Shortcut String equality checks by checking equality of the value array > > q2q-2q2 has updated the pull request incrementally with one additional commit > since the last revision: > > JDK-8272192 Shortcut String equality checks by checking

Re: RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array [v2]

2021-09-06 Thread David Holmes
On Mon, 6 Sep 2021 06:41:38 GMT, q2q-2q2 wrote: >> src/java.base/share/classes/java/lang/String.java line 1964: >> >>> 1962: public boolean equalsIgnoreCase(String anotherString) { >>> 1963: if (anotherString != null) { >>> 1964: return false; >> >> This one is

Re: RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array [v2]

2021-09-06 Thread q2q-2q2
> Shortcut String equality checks by checking equality of the value array q2q-2q2 has updated the pull request incrementally with one additional commit since the last revision: JDK-8272192 Shortcut String equality checks by checking equality of the value array - Changes: -

Re: RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array

2021-09-04 Thread liach
On Sat, 4 Sep 2021 11:59:58 GMT, q2q-2q2 wrote: > Shortcut String equality checks by checking equality of the value array src/java.base/share/classes/java/lang/String.java line 1964: > 1962: public boolean equalsIgnoreCase(String anotherString) { > 1963: if (anotherString != null)

RFR: JDK-8272192 Shortcut String equality checks by checking equality of the value array

2021-09-04 Thread q2q-2q2
Shortcut String equality checks by checking equality of the value array - Commit messages: - JDK-8272192 Changes: https://git.openjdk.java.net/jdk/pull/5370/files Webrev: https://webrevs.openjdk.java.net/?repo=jdk=5370=00 Issue: https://bugs.openjdk.java.net/browse/JDK-8272192