Skip to content

Commit

Permalink
reverse
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 9, 2024
1 parent 9c43061 commit b46f89b
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions core/src/main/java/lucee/runtime/config/ConfigWebHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,6 +314,10 @@ public CIPage getBaseComponentPage(PageContext pc) {
return base;
}

public void resetBaseComponentPage() {
baseComponentPageCFML = null;
}

public Mapping[] getApplicationMappings() {
List<Mapping> list = new ArrayList<>();
Iterator<SoftReference<Mapping>> it = applicationMappings.values().iterator();
Expand Down
4 changes: 4 additions & 0 deletions core/src/main/java/lucee/runtime/config/ConfigWebImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1659,6 +1659,10 @@ public CIPage getBaseComponentPage(PageContext pc) throws PageException {
return helper.getBaseComponentPage(pc);
}

public void resetBaseComponentPage() {
helper.resetBaseComponentPage();
}

@Override
public ActionMonitorCollector getActionMonitorCollector() {
return cs.getActionMonitorCollector();
Expand Down
2 changes: 2 additions & 0 deletions core/src/main/java/lucee/runtime/config/ConfigWebPro.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ public Mapping getApplicationMapping(String type, String virtual, String physica

public CIPage getBaseComponentPage(PageContext pc) throws PageException;

public void resetBaseComponentPage();

public ActionMonitorCollector getActionMonitorCollector();

public KeyLock<String> getContextLock();
Expand Down

0 comments on commit b46f89b

Please sign in to comment.