532533534535536537538539540541542
final Field field; if ( System.getSecurityManager() != null ) { field = AccessController.doPrivileged( action ); } else { field = action.run(); } return field; } /**