< prev index next >

src/java.base/share/classes/com/sun/net/ssl/TrustManagerFactory.java

Print this page

        

*** 61,71 **** * * @see java.security.Security security properties */ public final static String getDefaultAlgorithm() { String type; ! type = AccessController.doPrivileged(new PrivilegedAction<String>() { public String run() { return Security.getProperty("sun.ssl.trustmanager.type"); } }); if (type == null) { --- 61,71 ---- * * @see java.security.Security security properties */ public final static String getDefaultAlgorithm() { String type; ! type = AccessController.doPrivileged(new PrivilegedAction<>() { public String run() { return Security.getProperty("sun.ssl.trustmanager.type"); } }); if (type == null) {
< prev index next >