Summary
-------
Remove the legacy SunJSSE provider name, "com.sun.net.ssl.internal.ssl.Provider".
Problem
-------
The internal package com.sun.net.ssl had been removed in JDK 13 (See JDK-8215430). However, for compatibility, the provider name, "com.sun.net.ssl.internal.ssl.Provider" was reserved as an alias of the "SunJSSE" name. Applications should no longer use the legacy name.
Solution
--------
Remove the legacy SunJSSE provider name, "com.sun.net.ssl.internal.ssl.Provider", in JDK. The "SunJSSE" provider name should be used instead (for example, "SSLContext.getInstance("TLS", "SunJSSE")").
Specification
-------------
No public specification update. See Solution section.