(DeployedApplication app)
| 1453 | |
| 1454 | |
| 1455 | private void undeploy(DeployedApplication app) { |
| 1456 | if (log.isInfoEnabled()) { |
| 1457 | log.info(sm.getString("hostConfig.undeploy", app.name)); |
| 1458 | } |
| 1459 | Container context = host.findChild(app.name); |
| 1460 | try { |
| 1461 | host.removeChild(context); |
| 1462 | } catch (Throwable t) { |
| 1463 | ExceptionUtils.handleThrowable(t); |
| 1464 | log.warn(sm.getString("hostConfig.context.remove", app.name), t); |
| 1465 | } |
| 1466 | deployed.remove(app.name); |
| 1467 | } |
| 1468 | |
| 1469 | |
| 1470 | private void deleteRedeployResources(DeployedApplication app, String[] resources, int i, |
no test coverage detected