Skip to content

Commit 0d539e6

Browse files
committed
Commit to reduce spurious diffs in the merge
1 parent 4e416ae commit 0d539e6

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
import com.rabbitmq.client.Channel;
3434
import com.rabbitmq.client.Connection;
3535
import com.rabbitmq.client.ConnectionFactory;
36-
import com.rabbitmq.tools.Host;
3736

3837
public class BrokerTestCase extends TestCase
3938
{
@@ -122,4 +121,5 @@ public void closeChannel()
122121
channel = null;
123122
}
124123
}
124+
125125
}

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
package com.rabbitmq.client.test.functional;
2727

28-
import com.rabbitmq.client.GetResponse;
2928
import com.rabbitmq.client.AMQP;
29+
import com.rabbitmq.client.GetResponse;
3030

3131
import java.io.IOException;
3232
import java.util.List;
@@ -68,7 +68,7 @@ private void check(String routingKey, boolean expectQ1, boolean expectQ2)
6868
private void checkGet(String queue, boolean messageExpected)
6969
throws IOException
7070
{
71-
GetResponse r = channel.basicGet(ticket, queue, true);
71+
GetResponse r = channel.basicGet(ticket, queue, true);
7272
if (messageExpected) {
7373
assertNotNull(r);
7474
} else {
@@ -141,6 +141,7 @@ public void testFanoutRouting() throws Exception {
141141
public void testUnbind() throws Exception {
142142
AMQP.Queue.DeclareOk ok = channel.queueDeclare(ticket);
143143
String queue = ok.getQueue();
144+
144145
String routingKey = "quay";
145146
String x = "amq.direct";
146147

test/src/com/rabbitmq/examples/ProducerMain.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ private void runIt() throws IOException {
148148

149149
String queueName = "test queue";
150150
_channel.queueDeclare(_ticket, queueName, shouldPersist());
151-
151+
152152
if (shouldCommit()) {
153153
_channel.txSelect();
154154
}

0 commit comments

Comments
 (0)