JDK-8071541 : sun.net.idn is dependent on files under sun.text.normalizer beyond the scope of the assumption.
  • Type: Bug
  • Component: core-libs
  • Sub-Component: java.net
  • Affected Version: 9
  • Priority: P4
  • Status: Open
  • Resolution: Unresolved
  • OS: generic
  • CPU: generic
  • Submitted: 2015-01-26
  • Updated: 2018-09-11
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
Other
tbdUnresolved
Related Reports
Relates :  
Description
Results of grep at sun/net/idn  :
  Punycode.java:import sun.text.normalizer.UCharacter;
  Punycode.java:import sun.text.normalizer.UTF16;
  StringPrep.java:import sun.text.normalizer.CharTrie;
  StringPrep.java:import sun.text.normalizer.Trie;
  StringPrep.java:import sun.text.normalizer.NormalizerImpl;
  StringPrep.java:import sun.text.normalizer.VersionInfo;
  StringPrep.java:import sun.text.normalizer.UCharacter;
  StringPrep.java:import sun.text.normalizer.UCharacterIterator;
  StringPrep.java:import sun.text.normalizer.UTF16;
  StringPrepDataReader.java:import sun.text.normalizer.ICUBinary;




And,
    "Normalizer.UNICODE_3_2|NormalizerImpl.BEFORE_PRI_29));"
should be modified to
    "Normalizer.UNICODE_3_2));"

Because Normalizer.UNICODE_3_2 is defined as
                               NormalizerBase.UNICODE_3_2 |
                               NormalizerImpl.WITHOUT_CORRIGENDUM4_CORRECTIONS |
                               NormalizerImpl.BEFORE_PRI_29;
"|NormalizerImpl.BEFORE_PRI_29" is not necessary.