Skip to content

Commit

Permalink
Update ContextRenderImpl.java
Browse files Browse the repository at this point in the history
  • Loading branch information
portlek committed Sep 30, 2024
1 parent d2765cf commit c356383
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public ContextRenderImpl(
super(context);
this.container = container;
this.config = config;
this.layouts = layouts;
this.layouts = new ArrayList<>(layouts);
this.slotFinder = new SlotFinder(this);
this.elements = new ArrayList<>();
this.pipelines = new PipelineExecutorRenderImpl(this);
Expand All @@ -63,7 +63,7 @@ public ContextRenderImpl(@NotNull final ContextRender context) {
super(context);
this.container = context.container();
this.config = context.config();
this.layouts = context.layouts();
this.layouts = new ArrayList<>(context.layouts());
this.slotFinder = ((ContextRenderRich) context).slotFinder();
this.elements = new ArrayList<>(context.elements());
this.pipelines = context.pipelines();
Expand Down

0 comments on commit c356383

Please sign in to comment.