alhudz commented on PR #1745:
URL: https://github.com/apache/commons-lang/pull/1745#issuecomment-4946894806

   Checked, parity is not there. `TextStringBuilder.equalsIgnoreCase` has the 
same upper-case-only fold (line 1911 on current master).
   
   `Repro` against commons-text 1.15.0: `new 
TextStringBuilder("K").equalsIgnoreCase(new TextStringBuilder("K"))` (KELVIN 
SIGN vs `K`) -> `false` while `String` -> `true`; same for `å` vs ANGSTROM SIGN 
`Å` -> `false` vs `true`. The same one-line `toLowerCase` fold from this PR 
fixes it there too.
   
   Thanks for merging.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to