should fix small memory leak

This commit is contained in:
ajgeiss0702
2021-10-23 09:57:17 -07:00
parent a72e3f67c1
commit 751882f9d7
3 changed files with 10 additions and 0 deletions
@@ -5,6 +5,8 @@ import us.ajg0702.queue.api.players.AdaptedPlayer;
import us.ajg0702.queue.api.players.QueuePlayer;
import us.ajg0702.queue.api.queues.QueueServer;
import java.util.HashMap;
public interface QueueManager {
/**
@@ -123,4 +125,6 @@ public interface QueueManager {
ImmutableList<QueueServer> getPlayerQueues(AdaptedPlayer p);
void clear(AdaptedPlayer player);
HashMap<QueuePlayer, Integer> getSendingAttempts();
}