As a fix for H-663 I'd like to apply this patch
@@ -848,6 +848,8 @@
if (charset == null ||
!encoding.equalsIgnoreCase(charset.name())) {
try {
charset = Charset.forName(encoding);
+ } catch (IllegalCharsetNameException e) {
+ throw new UnsupportedEncodingException(encoding);
} catch (UnsupportedCharsetException e) {
throw new
UnsupportedEncodingException(encoding);
}
Please comment
Thanks,
Mikhail
http://issues.apache.org/jira/browse/HARMONY-663
---------------------------------------------------------------------
Terms of use : http://incubator.apache.org/harmony/mailing.html
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]