remove empty constructor

This commit is contained in:
tschulz 2016-05-31 10:54:58 +02:00
parent 986608d7ad
commit eefeb1e19f

View File

@ -19,9 +19,6 @@ public final class CommandRegistry implements ICommandRegistry {
private final Map<String, BotCommand> commandRegistryMap = new HashMap<>();
private BiConsumer<AbsSender, Message> defaultConsumer;
public CommandRegistry() {
}
@Override
public void registerDefaultAction(BiConsumer<AbsSender, Message> defaultConsumer) {
this.defaultConsumer = defaultConsumer;