615616617618619620621622623624625
GetDeclaredMethod action = GetDeclaredMethod.action( clazz, methodName, parameterTypes ); if ( System.getSecurityManager() != null ) { method = AccessController.doPrivileged( action ); } else { method = action.run(); } return method; } /**