In a migration process from Java 8 to 11, I executed jdeps on my code and noticed that this code uses JDK removed internal APIs.
dns-2.1.5.jar -> JDK removed internal API
org.xbill.DNS.spi.DNSJavaNameServiceDescriptor -> sun.net.spi.nameservice.NameService JDK internal API (JDK removed internal API)
org.xbill.DNS.spi.DNSJavaNameServiceDescriptor -> sun.net.spi.nameservice.NameServiceDescriptor JDK internal API (JDK removed internal API)
I searched this repository and noticed that this code still exists in the codebase.
Is there any plan to make this repository to JDK9+ safe?
In a migration process from Java 8 to 11, I executed
jdepson my code and noticed that this code uses JDK removed internal APIs.I searched this repository and noticed that this code still exists in the codebase.
Is there any plan to make this repository to JDK9+ safe?