Removed uneeded function

This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-08 13:46:57 +02:00
parent e8d4e0ae20
commit 3103adcb0f
1 changed files with 1 additions and 16 deletions

View File

@ -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