Skip to content

Commit

Permalink
LDEV-5021 - improve performance cloning PageContext
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Jul 15, 2024
1 parent bc95e7f commit d292579
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/main/java/lucee/runtime/PageContextImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -487,8 +487,8 @@ public PageContextImpl initialize(HttpServlet servlet, HttpServletRequest req, H
if (clone) {
this.cfid = tmplPC.cfid;
this.client = tmplPC.client;
this.cgiR = tmplPC.cgiR;
this.cgiRW = tmplPC.cgiRW;
// this.cgiR = tmplPC.cgiR;
// this.cgiRW = tmplPC.cgiRW;
this.cookie = tmplPC.cookie;
this.form = tmplPC.form;
this.url = tmplPC.url;
Expand Down

0 comments on commit d292579

Please sign in to comment.