summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java')
-rw-r--r--BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java20
1 files changed, 0 insertions, 20 deletions
diff --git a/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java b/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java
deleted file mode 100644
index bb64cdf..0000000
--- a/BJC-Utils2/src/main/java/bjc/utils/cli/fds/FDSCommand.java
+++ /dev/null
@@ -1,20 +0,0 @@
-package bjc.utils.cli.fds;
-
-/**
- * A command attached to an FDS interface.
- *
- * @author bjculkin
- *
- * @param <S>
- * The state type of the interface.
- */
-@FunctionalInterface
-public interface FDSCommand<S> {
- /**
- * Run this command.
- *
- * @param state
- * The current FDS state.
- */
- void run(FDSState<S> state);
-}