No real access control is implemented here. @author zsombor
| 17 | * |
| 18 | */ |
| 19 | public class AccessController { |
| 20 | |
| 21 | public static <T> T doPrivileged (PrivilegedAction<T> action) { |
| 22 | return action.run(); |
| 23 | } |
| 24 | |
| 25 | public static void checkPermission(Permission perm) throws AccessControlException { |
| 26 | |
| 27 | } |
| 28 | |
| 29 | } |
nothing calls this directly
no outgoing calls
no test coverage detected