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