()
| 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 { |
nothing calls this directly
no test coverage detected