(CommandLine cli)
| 91 | } |
| 92 | |
| 93 | @Override |
| 94 | public void runImpl(CommandLine cli) throws Exception { |
| 95 | try (var solrClient = CLIUtils.getSolrClient(cli)) { |
| 96 | if (CLIUtils.isCloudMode(solrClient)) { |
| 97 | deleteCollection(cli); |
| 98 | } else { |
| 99 | deleteCore(cli, solrClient); |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | protected void deleteCollection(CommandLine cli) throws Exception { |
| 105 | var builder = |
nothing calls this directly
no test coverage detected