Skip to content

Commit

Permalink
remove what command
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb committed Sep 18, 2023
1 parent 0f11c9e commit b655ada
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 495 deletions.
9 changes: 3 additions & 6 deletions src/main/java/emissary/Emissary.java
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,9 @@
import emissary.command.HelpCommand;
import emissary.command.PeersCommand;
import emissary.command.PoolCommand;
import emissary.command.RunCommand;
import emissary.command.ServerCommand;
import emissary.command.StopCommand;
import emissary.command.TopologyCommand;
import emissary.command.VersionCommand;
import emissary.command.WhatCommand;
import emissary.util.GitRepositoryState;
import emissary.util.io.LoggingPrintStream;

Expand Down Expand Up @@ -57,9 +54,9 @@ public class Emissary {

static {
List<Class<? extends EmissaryCommand>> cmds =
Arrays.asList(ServerCommand.class, HelpCommand.class, WhatCommand.class, TopologyCommand.class, FeedCommand.class,
AgentsCommand.class, PoolCommand.class, VersionCommand.class, RunCommand.class, EnvCommand.class, StopCommand.class,
PeersCommand.class, ConfigCommand.class, DirectoryCommand.class);
Arrays.asList(ServerCommand.class, HelpCommand.class, TopologyCommand.class, FeedCommand.class,
AgentsCommand.class, PoolCommand.class, VersionCommand.class, EnvCommand.class, PeersCommand.class,
ConfigCommand.class, DirectoryCommand.class);
Map<String, EmissaryCommand> staticCopy = new HashMap<>();
for (Class<? extends EmissaryCommand> clz : cmds) {
EmissaryCommand cmd;
Expand Down
310 changes: 0 additions & 310 deletions src/main/java/emissary/command/WhatCommand.java

This file was deleted.

This file was deleted.

7 changes: 0 additions & 7 deletions src/main/resources/emissary/command/WhatCommand.cfg

This file was deleted.

Loading

0 comments on commit b655ada

Please sign in to comment.