Skip to content

Commit 01abbed

Browse files
author
Simon MacMullen
committed
Don't import AMQImpl
1 parent eb8c0d3 commit 01abbed

File tree

1 file changed

+6
-8
lines changed

1 file changed

+6
-8
lines changed

src/com/rabbitmq/client/Channel.java

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040
import com.rabbitmq.client.AMQP.Basic;
4141
import com.rabbitmq.client.AMQP.Confirm;
4242
import com.rabbitmq.client.AMQP.Channel.FlowOk;
43-
import com.rabbitmq.client.impl.AMQImpl;
4443

4544
/**
4645
* Public API: Interface to an AMQ channel. See the <a href="http://www.amqp.org/">spec</a> for details.
@@ -301,13 +300,12 @@ Exchange.DeclareOk exchangeDeclare(String exchange, String type, boolean durable
301300
* @return a declaration-confirm method to indicate the exchange was successfully declared
302301
* @throws java.io.IOException if an error is encountered
303302
*/
304-
public AMQImpl.Exchange.DeclareOk exchangeDeclare(String exchange,
305-
String type,
306-
boolean durable,
307-
boolean autoDelete,
308-
boolean internal,
309-
Map<String, Object> arguments)
310-
throws IOException;
303+
public Exchange.DeclareOk exchangeDeclare(String exchange,
304+
String type,
305+
boolean durable,
306+
boolean autoDelete,
307+
boolean internal,
308+
Map<String, Object> arguments) throws IOException;
311309

312310
/**
313311
* Declare an exchange passively; that is, check if the named exchange exists.

0 commit comments

Comments
 (0)