Skip to content

Commit 7734765

Browse files
author
Marek Majkowski
committed
Cosmetic
1 parent 15d8331 commit 7734765

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

projects/client/RabbitMQ.Client/src/client/impl/ModelBase.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,7 @@ public abstract void ExchangeUnbind(string destination,
722722
//TODO: Mark these as virtual, maybe the model has an optimized way
723723
// of dealing with missing parameters.
724724
public string QueueDeclare()
725-
{
725+
{
726726
return QueueDeclare("", false, true, true, null);
727727
}
728728

@@ -738,12 +738,12 @@ public string QueueDeclare(string queue, bool durable, bool exclusive,
738738
}
739739

740740
public abstract string _Private_QueueDeclare(string queue,
741-
bool passive,
742-
bool durable,
743-
bool exclusive,
744-
bool autoDelete,
745-
bool nowait,
746-
IDictionary arguments);
741+
bool passive,
742+
bool durable,
743+
bool exclusive,
744+
bool autoDelete,
745+
bool nowait,
746+
IDictionary arguments);
747747

748748
public abstract void QueueBind(string queue,
749749
string exchange,

projects/client/Unit/src/unit/TestSsl.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public void SendReceive(ConnectionFactory cf) {
6767
IModel ch = conn.CreateModel();
6868

6969
ch.ExchangeDeclare("Exchange_TestSslEndPoint", ExchangeType.Direct);
70-
String qName = ch.QueueDeclare();
70+
String qName = ch.QueueDeclare();
7171
ch.QueueBind(qName, "Exchange_TestSslEndPoint", "Key_TestSslEndpoint", false, null);
7272

7373
string message = "Hello C# SSL Client World";

projects/examples/client/SingleGet/src/examples/SingleGet.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,8 +79,8 @@ public static int Main(string[] args) {
7979
conn.ConnectionShutdown += new ConnectionShutdownEventHandler(LogConnClose);
8080

8181
using (IModel ch = conn.CreateModel()) {
82-
conn.AutoClose = true;
83-
82+
conn.AutoClose = true;
83+
8484
ch.QueueDeclare(queueName, false, true, true, null);
8585
BasicGetResult result = ch.BasicGet(queueName, false);
8686
if (result == null) {

0 commit comments

Comments
 (0)