653654655656657658659660661662663
final Method[] methods; if ( System.getSecurityManager() != null ) { methods = AccessController.doPrivileged( action ); } else { methods = action.run(); } return methods; } /**
629630631632633634635636637638639