summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Client/Client/AmqChannel.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.Client/Client/AmqChannel.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.Client/Client/AmqChannel.cs')
-rw-r--r--dotnet/Qpid.Client/Client/AmqChannel.cs12
1 files changed, 0 insertions, 12 deletions
diff --git a/dotnet/Qpid.Client/Client/AmqChannel.cs b/dotnet/Qpid.Client/Client/AmqChannel.cs
index 1ce273b1bc..d6557a8ee5 100644
--- a/dotnet/Qpid.Client/Client/AmqChannel.cs
+++ b/dotnet/Qpid.Client/Client/AmqChannel.cs
@@ -908,18 +908,6 @@ namespace Qpid.Client
DoQueueDeclare(queueName, isDurable, isExclusive, isAutoDelete);
}
- private string DoDeclareQueue(AMQDestination amqd)
- {
- string queueName = amqd.QueueName;
- bool isDurable = amqd.IsDurable;
- bool isExclusive = amqd.IsExclusive;
-
- DoQueueDeclare(queueName, isDurable, isExclusive, amqd.AutoDelete);
-
- _logger.Debug("returning amqp.QueueName = " + amqd.QueueName);
- return amqd.QueueName;
- }
-
private void DoQueueDeclare(string queueName, bool isDurable, bool isExclusive, bool isAutoDelete)
{
_logger.Debug(string.Format("DeclareQueue name={0} durable={1} exclusive={2}, auto-delete={3}",