jdk/src/java.base/share/classes/java/security/IdentityScope.java
changeset 30033 b9c86c17164a
parent 25859 3317bb8137f4
child 39337 ac7e4f1d69db
equal deleted inserted replaced
30019:e7dbbef69d12 30033:b9c86c17164a
    72 
    72 
    73     // initialize the system scope
    73     // initialize the system scope
    74     private static void initializeSystemScope() {
    74     private static void initializeSystemScope() {
    75 
    75 
    76         String classname = AccessController.doPrivileged(
    76         String classname = AccessController.doPrivileged(
    77                                 new PrivilegedAction<String>() {
    77                                 new PrivilegedAction<>() {
    78             public String run() {
    78             public String run() {
    79                 return Security.getProperty("system.scope");
    79                 return Security.getProperty("system.scope");
    80             }
    80             }
    81         });
    81         });
    82 
    82