< prev index next >

src/java.base/share/classes/javax/crypto/JceSecurity.java

Print this page

        

@@ -74,11 +74,11 @@
     }
 
     static {
         try {
             AccessController.doPrivileged(
-                new PrivilegedExceptionAction<Void> () {
+                new PrivilegedExceptionAction<> () {
                     @Override
                     public Void run() throws Exception {
                         setupJurisdictionPolicies();
                         return null;
                     }

@@ -223,11 +223,11 @@
     static URL getCodeBase(final Class<?> clazz) {
         synchronized (codeBaseCacheRef) {
             URL url = codeBaseCacheRef.get(clazz);
             if (url == null) {
                 url = AccessController.doPrivileged(
-                    new PrivilegedAction<URL>() {
+                    new PrivilegedAction<>() {
                         @Override
                         public URL run() {
                             ProtectionDomain pd = clazz.getProtectionDomain();
                             if (pd != null) {
                                 CodeSource cs = pd.getCodeSource();
< prev index next >