Add Collections.synchronizedList to classpath

This commit is contained in:
Mike Jensen
2014-12-12 11:35:39 -07:00
parent 980c3025fc
commit 7baa5243b0
2 changed files with 96 additions and 2 deletions

View File

@ -18,7 +18,7 @@ package java.security;
*/
public class AccessController {
public static Object doPrivileged (PrivilegedAction action) {
public static <T> T doPrivileged (PrivilegedAction<T> action) {
return action.run();
}