Skip to content

Commit 03879fe

Browse files
author
Matthew Sackman
committed
Whitespace
1 parent e952b70 commit 03879fe

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/src/com/rabbitmq/client/test/functional/ExchangeExchangeBindingsAutoDelete.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737

3838
public class ExchangeExchangeBindingsAutoDelete extends BrokerTestCase {
3939

40-
/*
40+
/*
4141
* build (A -> B) and (B -> A) and then delete one binding and
4242
* both exchanges should autodelete
4343
*/
@@ -46,7 +46,7 @@ public void testAutoDeleteExchangesSimpleLoop() throws IOException {
4646
channel.exchangeDeclare("B", "fanout", false, true, null);
4747
channel.exchangeBind("A", "B", "");
4848
channel.exchangeBind("B", "A", "");
49-
49+
5050
channel.exchangeUnbind("A", "B", "");
5151
// both exchanges should not exist now, so it should not be an
5252
// error to redeclare either with different arguments
@@ -55,7 +55,7 @@ public void testAutoDeleteExchangesSimpleLoop() throws IOException {
5555
channel.exchangeDelete("A");
5656
channel.exchangeDelete("B");
5757
}
58-
58+
5959
/*
6060
* build (A -> B) (B -> C) (C -> D) and then delete D.
6161
* All should autodelete
@@ -69,13 +69,13 @@ public void testTransientAutoDelete() throws IOException {
6969
channel.exchangeBind("B", "A", "");
7070
channel.exchangeBind("C", "B", "");
7171
channel.exchangeBind("D", "C", "");
72-
72+
7373
channel.exchangeDelete("D");
74-
74+
7575
channel.exchangeDeclare("A", "fanout", true, true, null);
7676
channel.exchangeDelete("A");
7777
}
78-
78+
7979
/*
8080
* build (A -> B) (B -> C) (C -> D)
8181
* (Source -> A) (Source -> B) (Source -> C) (Source -> D)
@@ -87,7 +87,7 @@ public void testRepeatedTargetAutoDelete() throws IOException {
8787
channel.exchangeDeclare("C", "fanout", false, true, null);
8888
channel.exchangeDeclare("D", "fanout", false, true, null);
8989
channel.exchangeDeclare("Source", "fanout", false, true, null);
90-
90+
9191
channel.exchangeBind("B", "A", "");
9292
channel.exchangeBind("C", "B", "");
9393
channel.exchangeBind("D", "C", "");

0 commit comments

Comments
 (0)