From 3103adcb0fb96ef0747321d2320f13e0c0f3aad9 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Wed, 8 Sep 2021 13:46:57 +0200 Subject: [PATCH] Removed uneeded function --- source/tristanable/manager.d | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/source/tristanable/manager.d b/source/tristanable/manager.d index 7556bdd..7aae679 100644 --- a/source/tristanable/manager.d +++ b/source/tristanable/manager.d @@ -130,22 +130,7 @@ public final class Manager queuesLock.unlock(); } - private bool isValidTag_callerThreadSafe(ulong tag) - { - bool tagExists; - - - foreach(Queue queue; queues) - { - if(queue.getTag() == tag) - { - tagExists = true; - break; - } - } - - return tagExists; - } + /** * TODO: Comment