We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60c2de4 commit 96fa456Copy full SHA for 96fa456
src/com/rabbitmq/client/impl/ChannelN.java
@@ -393,7 +393,7 @@ private void releaseChannel() {
393
}
394
395
protected void processDelivery(Command command, Basic.Deliver method) {
396
- Basic.Deliver m = (Basic.Deliver) method;
+ Basic.Deliver m = method;
397
398
Consumer callback = _consumers.get(m.getConsumerTag());
399
if (callback == null) {
@@ -1059,8 +1059,7 @@ public String transformReply(AMQCommand replyCommand) {
1059
1060
};
1061
1062
- rpc((Method)
1063
- new Basic.Consume.Builder()
+ rpc(new Basic.Consume.Builder()
1064
.queue(queue)
1065
.consumerTag(consumerTag)
1066
.noLocal(noLocal)
0 commit comments