563564565566567568569570571572573
final Field[] fields; if ( System.getSecurityManager() != null ) { fields = AccessController.doPrivileged( action ); } else { fields = action.run(); } return fields; } /**
543544545546547548549550551552553