cdi-extender/src/main/java/org/apache/aries/cdi/container/internal/model/FactoryComponent.java [54:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		_log = containerState.containerLogs().getLogger(getClass());
	}

	@Override
	public boolean close() {
		try (Syncro open = syncro.open()) {
			if (_snapshot == null) {
				return true;
			}

			_snapshot.instances.removeIf(
				instance -> {
					ExtendedComponentInstanceDTO einstance = (ExtendedComponentInstanceDTO)instance;

					Promise<Boolean> result = submit(einstance.closeOp(), einstance::close).onFailure(
						f -> {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cdi-extender/src/main/java/org/apache/aries/cdi/container/internal/model/SingleComponent.java [54:69]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
		_log = containerState.containerLogs().getLogger(getClass());
	}

	@Override
	public boolean close() {
		try (Syncro open = syncro.open()) {
			if (_snapshot == null) {
				return true;
			}

			_snapshot.instances.removeIf(
				instance -> {
					ExtendedComponentInstanceDTO einstance = (ExtendedComponentInstanceDTO)instance;

					Promise<Boolean> result = submit(einstance.closeOp(), einstance::close).onFailure(
						f -> {
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



