Clean up
This commit is contained in:
parent
7ba3c9f1f7
commit
3ce8bda7de
|
@ -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
|
||||
*/
|
||||
|
|
Loading…
Reference in New Issue