136137138139140141142143144145146147
public Registry build() { _lock.lock(); RegistryImpl registry = new RegistryImpl(_modules, _classFactory, _logSource, _serviceOverrides); registry.eagerLoadServices(); return new RegistryWrapper(registry); }
126127128129130131132133134
public Registry build() { _lock.lock(); RegistryImpl registry = new RegistryImpl(_modules, _classFactory, _loggerSource); return new RegistryWrapper(registry); }
131132133134135136137
public Registry build() { _lock.lock(); return new RegistryImpl(_modules.values(), _classLoader, _logSource, _serviceOverrides); }
127128129130131132133134135
138139140141142143144145146
public Registry build() { _lock.lock(); RegistryImpl registry = new RegistryImpl(_modules, _classFactory, _logSource); return new RegistryWrapper(registry); }