Skip to content

Commit

Permalink
split up services between filtered
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed Nov 21, 2024
1 parent 8244abc commit 2471951
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ void initializeFromOriginal() {
this.weldBootstrap = context.getTransientAppMetaData(WELD_BOOTSTRAP, WeldBootstrap.class);
this.moduleClasses = getOriginal().moduleClasses;
this.beanClasses = getOriginal().beanClasses;
this.simpleServiceRegistry = getOriginal().simpleServiceRegistry;
getServices().addAll(getOriginal().getServices().entrySet());
this.moduleClassLoaderForBDA = getOriginal().moduleClassLoaderForBDA;
this.ejbDescImpls = new LinkedHashSet<>(getOriginal().ejbDescImpls);
if (this.itMap == null) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public DeploymentImpl(ReadableArchive archive,

this.context = currentDeploymentContext.get();
this.archiveFactory = currentDeployment.get().archiveFactory;
this.simpleServiceRegistry = currentDeployment.get().simpleServiceRegistry;
getServices().addAll(currentDeployment.get().getServices().entrySet());
this.injectionManager = currentDeployment.get().injectionManager;
this.logger = currentDeployment.get().logger;
this.deployedEjbs = currentDeployment.get().deployedEjbs;
Expand Down

0 comments on commit 2471951

Please sign in to comment.