Skip to content

Commit 18adc5d

Browse files
author
Matthew Sackman
committed
merging bug22265 into default
2 parents e43a3b4 + e43b1ed commit 18adc5d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/rabbitmq/client/RpcClient.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ public void close() throws IOException {
118118
* @throws IOException if an error is encountered
119119
* @return the name of the reply queue
120120
*/
121-
private String setupReplyQueue() throws IOException {
121+
protected String setupReplyQueue() throws IOException {
122122
return _channel.queueDeclare("", false, false, true, true, null).getQueue();
123123
}
124124

@@ -127,7 +127,7 @@ private String setupReplyQueue() throws IOException {
127127
* @throws IOException if an error is encountered
128128
* @return the newly created and registered consumer
129129
*/
130-
private DefaultConsumer setupConsumer() throws IOException {
130+
protected DefaultConsumer setupConsumer() throws IOException {
131131
DefaultConsumer consumer = new DefaultConsumer(_channel) {
132132
@Override
133133
public void handleShutdownSignal(String consumerTag,

0 commit comments

Comments
 (0)