Removed unnecessary onRegister() overrides

This commit is contained in:
Christian Blos 2020-10-08 15:07:14 +02:00
parent 74e305c2a7
commit 5b465e79f3
2 changed files with 0 additions and 10 deletions

View File

@ -50,11 +50,6 @@ public abstract class AbilityBot extends BaseAbilityBot implements LongPollingBo
this(botToken, botUsername, onlineInstance(botUsername));
}
@Override
public void onRegister() {
super.onRegister();
}
@Override
public void onUpdateReceived(Update update) {
super.onUpdateReceived(update);

View File

@ -56,11 +56,6 @@ public abstract class AbilityWebhookBot extends BaseAbilityBot implements Webhoo
this(botToken, botUsername, botPath, onlineInstance(botUsername));
}
@Override
public void onRegister() {
super.onRegister();
}
@Override
public BotApiMethod onWebhookUpdateReceived(Update update) {
super.onUpdateReceived(update);