Skip to content

Commit

Permalink
remove deprecated stop command (#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
dev-mlb authored Oct 2, 2023
1 parent 0427e1c commit f81ef95
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 66 deletions.
3 changes: 1 addition & 2 deletions src/main/java/emissary/Emissary.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
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;
Expand Down Expand Up @@ -58,7 +57,7 @@ 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,
AgentsCommand.class, PoolCommand.class, VersionCommand.class, RunCommand.class, EnvCommand.class,
PeersCommand.class, ConfigCommand.class, DirectoryCommand.class);
Map<String, EmissaryCommand> staticCopy = new HashMap<>();
for (Class<? extends EmissaryCommand> clz : cmds) {
Expand Down
64 changes: 0 additions & 64 deletions src/main/java/emissary/command/StopCommand.java

This file was deleted.

0 comments on commit f81ef95

Please sign in to comment.