MCPcopy Index your code
hub / github.com/apache/tomcat / run

Method run

java/org/apache/catalina/startup/HostConfig.java:1869–1876  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

1867
1868 private record DeployWar(HostConfig config, ContextName cn, File war) implements Runnable {
1869 @Override
1870 public void run() {
1871 try {
1872 config.deployWAR(cn, war);
1873 } finally {
1874 config.removeServiced(cn.getName());
1875 }
1876 }
1877 }
1878
1879 private record DeployDirectory(HostConfig config, ContextName cn, File dir) implements Runnable {

Callers

nothing calls this directly

Calls 3

deployWARMethod · 0.80
getNameMethod · 0.65
removeServicedMethod · 0.45

Tested by

no test coverage detected