This commit is contained in:
Tristan B. Velloza Kildaire 2021-09-08 13:51:28 +02:00
parent 7ba3c9f1f7
commit 3ce8bda7de
1 changed files with 0 additions and 22 deletions

View File

@ -97,28 +97,6 @@ public final class Queue
return queueHead;
}
/**
* Shifts the list and regenerates it to remove
* the current head
*
* Not thread safe but only called by thread
* safe (mutex locking) method
*/
// private void offWithTheHead()
// {
// /* The new queue */
// QueueItem[] newQueue;
// /* Add everything but the first */
// for(ulong i = 1; i < queue.length; i++)
// {
// newQueue ~= queue[i];
// }
// /* Make the the new queue */
// queue = newQueue;
// }
/**
* Returns the tag for this queue
*/