On Tue, 26 Apr 2022 19:05:05 GMT, Weijun Wang <wei...@openjdk.org> wrote:
>> Mark Powers has updated the pull request incrementally with one additional >> commit since the last revision: >> >> Alan Bateman comments > > src/java.base/share/classes/javax/net/ssl/KeyManagerFactory.java line 69: > >> 67: String type; >> 68: type = AccessController.doPrivileged((PrivilegedAction<String>) >> () -> >> 69: Security.getProperty("ssl.KeyManagerFactory.algorithm")); > > We can probably use > `sun.security.action.GetPropertyAction::privilegedGetProperty`. This is > inside `java.base` so that class is always available. Wasn't there another bug to address this? ------------- PR: https://git.openjdk.java.net/jdk/pull/8384