Skip to content

Commit 99a92a8

Browse files
author
Steve Powell
committed
Change handleBasicReturn(..) to handleReturn(..) on ReturnListener interface.
1 parent 293c683 commit 99a92a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/com/rabbitmq/client/ReturnListener.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* @see Channel#basicPublish
2727
*/
2828
public interface ReturnListener {
29-
void handleBasicReturn(int replyCode,
29+
void handleReturn(int replyCode,
3030
String replyText,
3131
String exchange,
3232
String routingKey,

src/com/rabbitmq/client/impl/ChannelN.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@ public void releaseChannelNumber() {
279279
if (l != null) {
280280
Basic.Return basicReturn = (Basic.Return) method;
281281
try {
282-
l.handleBasicReturn(basicReturn.replyCode,
282+
l.handleReturn(basicReturn.replyCode,
283283
basicReturn.replyText,
284284
basicReturn.exchange,
285285
basicReturn.routingKey,

0 commit comments

Comments
 (0)