Remove deprecated and unused private method

This commit is contained in:
Bea 2022-12-20 15:15:03 +01:00
parent 28d7ff18ba
commit f9fe12a248
1 changed files with 0 additions and 9 deletions

View File

@ -168,15 +168,6 @@ public class ClearChat
}
}
private void respond(Object responseFlowObj, String content)
{
if(responseFlowObj instanceof InteractionHook) {
((InteractionHook) responseFlowObj).editOriginal(content).queue();
} else if (responseFlowObj instanceof Message) {
((Message) responseFlowObj).reply(content).queue();
}
}
// cap the amount to avoid abuse.
public static int getMaxAmount() { return 1000; }