summaryrefslogtreecommitdiff
path: root/dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java
diff options
context:
space:
mode:
Diffstat (limited to 'dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java')
-rw-r--r--dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java22
1 files changed, 0 insertions, 22 deletions
diff --git a/dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java b/dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java
deleted file mode 100644
index 6660bf8..0000000
--- a/dicore3/command/src/main/java/io/dico/dicore/command/ICommandReceiver.java
+++ /dev/null
@@ -1,22 +0,0 @@
-package io.dico.dicore.command;
-
-import org.bukkit.plugin.Plugin;
-
-import java.lang.reflect.Method;
-
-public interface ICommandReceiver {
-
- interface Factory {
-
- ICommandReceiver getReceiver(ExecutionContext context, Method target, String cmdName);
-
- Plugin getPlugin();
-
- // type is CoroutineContext, but we avoid referring to Kotlin runtime here
- default Object getCoroutineContext() {
- return null;
- }
-
- }
-
-}