Removed unused function in Command

Signed-off-by: Louis Vallat <louis@louis-vallat.xyz>
This commit is contained in:
Louis Vallat 2021-04-09 09:41:53 +02:00
parent cf135d9ff5
commit 4fb6022524

View File

@ -50,8 +50,4 @@ public abstract class Command {
.addField("IDENTIFIER", errorCode, false).setTimestamp(Instant.now());
})).then();
}
protected String[] getArgArray(MessageCreateEvent event) {
return event.getMessage().getContent().substring(name.length()).split(" ");
}
}