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()
{
/Collections/Utilities/Extensions.cs
@@ -11,7 +11,6 @@
{
public static class Extensions
{
 
/// <summary>
/// Compares two dictionaries for equality.
/// </summary>