<i18n dev> [9] RFR: 8038092: Re-examine Bidi reflective dependency on java.awt.font

Alan Bateman Alan.Bateman at oracle.com
Tue Jul 1 13:58:33 UTC 2014


On 30/06/2014 18:35, Naoto Sato wrote:
> Hello,
>
> Please review the fix for the subject bug:
> https://bugs.openjdk.java.net/browse/JDK-8038092
>
> The proposed change is located at:
> http://cr.openjdk.java.net/~naoto/8038092/webrev.0/
>
Thanks for looking at this issue.

One part that doesn't look right is where Bidi is used before 
TextAttribute or NumericShaper are initialized and then used later with 
one of these as an attribute. Normally with SharedSecrets then 
ensureClassInitialized is to used to initialize a class that is known to 
register the secret but in this case then you can't do that because it 
would create a dependency on java.awt. The simplest thing might be to 
keep the Class.forName in both TextAttribtueConstants and 
NumericShapings as that will ensure that those classes are initialized 
(if they are present).

A minor comment is that there are probably a bunch of imports that can 
be removed once the bulk of the core reflection usage goes away.

-Alan.


More information about the i18n-dev mailing list