make the method actually abstract instead of just returning null

This commit is contained in:
Pyrbu 2023-07-16 01:09:57 +02:00
parent 9cb580c850
commit 2dd75b4cda

@ -10,7 +10,5 @@ public abstract class InteractionActionImpl extends InteractionAction {
super(delay, interactionType);
}
public Component getInfo(String id, int index, CommandContext context) {
return null;
}
public abstract Component getInfo(String id, int index, CommandContext context);
}