()
| 1890 | |
| 1891 | private record MigrateApp(HostConfig config, ContextName cn, File source, File destination) implements Runnable { |
| 1892 | @Override |
| 1893 | public void run() { |
| 1894 | try { |
| 1895 | config.migrateLegacyApp(source, destination); |
| 1896 | } finally { |
| 1897 | config.removeServiced(cn.getName()); |
| 1898 | } |
| 1899 | } |
| 1900 | } |
| 1901 | |
| 1902 |
nothing calls this directly
no test coverage detected