summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Common/Collections/SynchronousQueue.cs
diff options
context:
space:
mode:
authorSteven Shaw <steshaw@apache.org>2006-12-19 22:14:19 +0000
committerSteven Shaw <steshaw@apache.org>2006-12-19 22:14:19 +0000
commit3e419078289fe68e4629e1dde57384277394eef0 (patch)
tree3df8c5fa65e9c24355add820865222e10a93dd33 /dotnet/Qpid.Common/Collections/SynchronousQueue.cs
parent03a3e2742bdb91f82613cf04f9ab079fd4e24f7c (diff)
downloadqpid-python-3e419078289fe68e4629e1dde57384277394eef0.tar.gz
Added Qpid.Client.Transport.Socket.Blocking project to MonoDevelop files.
Fixed some compiler warnings. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@488830 13f79535-47bb-0310-9956-ffa450edef68
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.