Skip to content

Commit

Permalink
clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeloffner committed Nov 3, 2023
1 parent a7d7faa commit 8ceb2cc
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions core/src/main/java/lucee/runtime/config/ConfigImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
import org.osgi.framework.BundleException;
import org.osgi.framework.Version;

import lucee.print;
import lucee.commons.digest.HashUtil;
import lucee.commons.io.CharsetUtil;
import lucee.commons.io.FileUtil;
Expand Down Expand Up @@ -790,15 +789,9 @@ protected void setComponentMappings(Mapping[] componentMappings) {
}

public void checkMappings() {
double start = SystemUtil.millis();
print.e("------ check mappings --------");
mappings = initMappings(uncheckedMappings);
print.e("- mapping: " + uncheckedMappings.length + ":" + mappings.length);
customTagMappings = initMappings(uncheckedCustomTagMappings);
print.e("- custom: " + uncheckedCustomTagMappings.length + ":" + customTagMappings.length);
componentMappings = initMappings(uncheckedComponentMappings);
print.e("- component: " + uncheckedComponentMappings.length + ":" + componentMappings.length);
print.e(SystemUtil.millis() - start);
}

private Mapping[] initMappings(Mapping[] mappings) {
Expand Down

0 comments on commit 8ceb2cc

Please sign in to comment.