wasSharp

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 11  →  ?path2? @ 12
/Collections/Generic/CircularQueue.cs
@@ -18,9 +18,9 @@
public class CircularQueue<T>
{
private readonly LinkedList<T> Store = new LinkedList<T>();
private LinkedListNode<T> CurrentNode;
 
private readonly object SyncRoot = new object();
private LinkedListNode<T> CurrentNode;
 
public CircularQueue()
{