summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Common/Collections/SynchronousQueue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'dotnet/Qpid.Common/Collections/SynchronousQueue.cs')
-rw-r--r--dotnet/Qpid.Common/Collections/SynchronousQueue.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/dotnet/Qpid.Common/Collections/SynchronousQueue.cs b/dotnet/Qpid.Common/Collections/SynchronousQueue.cs
index a678a6c5fc..c559a37b44 100644
--- a/dotnet/Qpid.Common/Collections/SynchronousQueue.cs
+++ b/dotnet/Qpid.Common/Collections/SynchronousQueue.cs
@@ -28,17 +28,17 @@ namespace Qpid.Collections
/// <summary>
/// Lock protecting both wait queues
/// </summary>
- private readonly object _qlock = new object();
+// private readonly object _qlock = new object();
/// <summary>
/// Queue holding waiting puts
/// </summary>
- private readonly WaitQueue _waitingProducers;
+// private readonly WaitQueue _waitingProducers;
/// <summary>
/// Queue holding waiting takes
/// </summary>
- private readonly WaitQueue _waitingConsumers;
+// private readonly WaitQueue _waitingConsumers;
/**
* Queue to hold waiting puts/takes; specialized to Fifo/Lifo below.