Skip to content

Commit

Permalink
remove method "resetBaseComponentPage"
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Dec 9, 2024
1 parent fa4c58b commit b1479b4
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 11 deletions.
4 changes: 0 additions & 4 deletions core/src/main/java/lucee/runtime/config/ConfigWebHelper.java
Original file line number Diff line number Diff line change
Expand Up @@ -314,10 +314,6 @@ 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
5 changes: 0 additions & 5 deletions core/src/main/java/lucee/runtime/config/ConfigWebImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -1659,11 +1659,6 @@ public CIPage getBaseComponentPage(PageContext pc) throws PageException {
return helper.getBaseComponentPage(pc);
}

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

@Override
public ActionMonitorCollector getActionMonitorCollector() {
return cs.getActionMonitorCollector();
Expand Down
2 changes: 0 additions & 2 deletions core/src/main/java/lucee/runtime/config/ConfigWebPro.java
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,6 @@ 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 b1479b4

Please sign in to comment.