Description
Crash when the the char to be searched value it's out of range >= '\u0000' <= '\uFFFF'
Getting the next error -->
java.lang.IllegalArgumentException: Not a valid Unicode code point: 0xFFFFF936
Basically the problem is that when it is verified that the character to search is less than MIN_SUPPLEMENTARY_CODE_POINT, the search is not exited of the loop. It continues searching but this time values less than or equal to Character.MAX_CODE_POINT
Attachments
Issue Links
- is related to
-
LANG-1409 Crashes when testing StringUtils and CharSequenceUtils
- Open