You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
org.ice4j.security.LongTermCredential.toString(...)
line 77
incorrect: new String(bytes, "UTF-8");
problem : unexpected bytes translated to 0xFFFD
correct : CharsetDecoder with onMalformedInput(REPORT), onUnmappableCharacter(REPORT)
Also consider using static final Charset UTF_8 = Charset.forName("UTF-8"),
(no UnsupportedEncodingException, UTF-8 must be supported).
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: