jdk/src/share/classes/javax/net/ssl/TrustManagerFactory.java
changeset 14514 46a8ed03c7fc
parent 5506 202f599c92aa
child 14775 2ed01c760aea
equal deleted inserted replaced
14513:f6dc8c52e275 14514:46a8ed03c7fc
    63      * if no such property exists.
    63      * if no such property exists.
    64      */
    64      */
    65     public final static String getDefaultAlgorithm() {
    65     public final static String getDefaultAlgorithm() {
    66         String type;
    66         String type;
    67         type = AccessController.doPrivileged(new PrivilegedAction<String>() {
    67         type = AccessController.doPrivileged(new PrivilegedAction<String>() {
       
    68             @Override
    68             public String run() {
    69             public String run() {
    69                 return Security.getProperty(
    70                 return Security.getProperty(
    70                     "ssl.TrustManagerFactory.algorithm");
    71                     "ssl.TrustManagerFactory.algorithm");
    71             }
    72             }
    72         });
    73         });