402403404405406407408409410
} private ComponentMonitor createComponentMonitor(Map attributes) { final ComponentMonitor monitor = (ComponentMonitor) attributes.remove(COMPONENT_MONITOR); if ( monitor == null ){ return new DelegatingComponentMonitor(); } return monitor; }
203204205206207208209210211