Removed non-ASCII characters

This commit is contained in:
Artem Smotrakov
2022-04-25 22:24:06 +01:00
committed by Chris Smowton
parent e86fd72529
commit 52b7fbf484
2 changed files with 3 additions and 3 deletions

View File

@@ -3,6 +3,6 @@ package com.rabbitmq.client;
import java.io.IOException;;
public interface Consumer {
void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
throws IOException;
}

View File

@@ -5,11 +5,11 @@ import java.io.IOException;
public class DefaultConsumer implements Consumer {
public DefaultConsumer(Channel channel) {
}
@Override
public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
public void handleDelivery(String consumerTag, Envelope envelope, AMQP.BasicProperties properties, byte[] body)
throws IOException {
}
}