Skip to content

Commit d276efd

Browse files
author
Matthew Sackman
committed
Remove trailing whitespace
1 parent 7e8aec7 commit d276efd

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

docs/specs/amqp0-9-1.xml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,9 @@
155155
<amqp major = "0" minor = "9" revision = "1"
156156
port = "5672" comment = "AMQ Protocol version 0-9-1">
157157
<!--
158-
====================================================== ==
159-
CONSTANTS ======================================================
158+
======================================================
159+
== CONSTANTS
160+
======================================================
160161
-->
161162
<!-- Frame types -->
162163
<constant name = "frame-method" value = "1" />

projects/client/RabbitMQ.Client/src/client/api/DefaultBasicConsumer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ public virtual void HandleBasicCancel(string consumerTag)
136136
{
137137
OnCancel();
138138
}
139-
139+
140140
///<summary>Default implementation - sets ShutdownReason and
141141
///calls OnCancel().</summary>
142142
public virtual void HandleModelShutdown(IModel model, ShutdownEventArgs reason)

projects/client/RabbitMQ.Client/src/client/api/IBasicConsumer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ public interface IBasicConsumer
6969
///<summary>Called upon successful deregistration of the
7070
///consumer from the broker.</summary>
7171
void HandleBasicCancelOk(string consumerTag);
72-
72+
7373
/// <summary>
7474
/// Called when the consumer is cancelled for reasons other than by a
7575
/// basicCancel: e.g. the queue has been deleted (either by this channel or

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public class TestConsumerCancelNotify {
5656

5757
Object lockObject = new Object();
5858
bool notified = false;
59-
59+
6060
[Test]
6161
public void TestConsumerCancelNotification() {
6262
string queue = "queue_consumer_notify";
@@ -66,7 +66,7 @@ public void TestConsumerCancelNotification() {
6666
chan.QueueDeclare(queue, false, true, false, null);
6767
IBasicConsumer consumer = new CancelNotificationConsumer(chan, this);
6868
chan.BasicConsume(queue, false, consumer);
69-
69+
7070
chan.QueueDelete(queue);
7171
lock (lockObject) {
7272
if (!notified) {
@@ -75,15 +75,15 @@ public void TestConsumerCancelNotification() {
7575
Assert.IsTrue(notified);
7676
}
7777
}
78-
78+
7979
public class CancelNotificationConsumer : QueueingBasicConsumer
8080
{
8181
TestConsumerCancelNotify testClass;
82-
82+
8383
public CancelNotificationConsumer(IModel model, TestConsumerCancelNotify tc) : base(model) {
8484
this.testClass = tc;
8585
}
86-
86+
8787
public override void HandleBasicCancel(string consumerTag) {
8888
lock (testClass.lockObject) {
8989
testClass.notified = true;

0 commit comments

Comments
 (0)