You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by Deven You <de...@gmail.com> on 2010/03/03 10:49:30 UTC

[classlib][nio_char]Remove alias cahce from Charset

See https://issues.apache.org/jira/browse/HARMONY-6461, At present when load
a charset with the given charset name, Charset will cache all alias of that
charset. However one alias maybe belong to different charsets. This design
will cause alias conflict. Charset solve this issue now by hard coding all
conflict alias. I think the correct way is only cache the given charset name
and its canonical name. If you have any suggestion? Thanks a lot!