mirror of
https://github.com/github/codeql.git
synced 2026-04-30 11:15:13 +02:00
Removed non-ASCII characters
This commit is contained in:
committed by
Chris Smowton
parent
e86fd72529
commit
52b7fbf484
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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 {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user