Skip to content

Commit

Permalink
exp: added module BDA to root during deep copy, doesn't work
Browse files Browse the repository at this point in the history
  • Loading branch information
lprimak committed Nov 13, 2024
1 parent 4c255ef commit 89ef769
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,9 @@ public WeldUtils.BDAType getModuleBDAType() {

@Override
RootBeanDeploymentArchive deepCopy() {
return new RootBeanDeploymentArchive(super.deepCopy(), moduleBda.deepCopy());
RootBeanDeploymentArchive copy = new RootBeanDeploymentArchive(super.deepCopy(), moduleBda.deepCopy());
copy.getBeanDeploymentArchives().add(copy.moduleBda);
return copy;
}

@Override
Expand Down

0 comments on commit 89ef769

Please sign in to comment.