Author: steshaw
Date: Tue Nov 28 17:26:02 2006
New Revision: 480318
URL: http://svn.apache.org/viewvc?view=rev&rev=480318
Log:
Tidy up
Modified:
incubator/qpid/trunk/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
Modified:
incubator/qpid/trunk/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
URL:
http://svn.apache.org/viewvc/incubator/qpid/trunk/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs?view=diff&rev=480318&r1=480317&r2=480318
==============================================================================
---
incubator/qpid/trunk/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
(original)
+++
incubator/qpid/trunk/qpid/dotnet/Qpid.Client.Tests/Common/BaseMessagingTestFixture.cs
Tue Nov 28 17:26:02 2006
@@ -40,16 +40,7 @@
{
QpidConnectionInfo connectionInfo = new QpidConnectionInfo();
- bool local = true;
-
- if (local)
- {
- connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp",
"localhost", 5672, false));
- }
- else
- {
- connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp",
"eqd-lxamq01.uk.jpmorgan.com", 8099, false));
- }
+ connectionInfo.AddBrokerInfo(new AmqBrokerInfo("amqp",
"localhost", 5672, false));
_connection = new AMQConnection(connectionInfo);
_channel = _connection.CreateChannel(false,
AcknowledgeMode.NoAcknowledge, 1);
}