Skip to content

Commit 06f5c66

Browse files
author
Simon MacMullen
committed
Minor tweaks
1 parent 496435e commit 06f5c66

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/com/rabbitmq/client/Channel.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ void basicPublish(String exchange, String routingKey, boolean mandatory, boolean
271271
Exchange.DeclareOk exchangeDeclare(String exchange, String type, boolean durable) throws IOException;
272272

273273
/**
274-
* Declare an exchange, via an interface that allows the complete set of arguments.
274+
* Declare an exchange.
275275
* @see com.rabbitmq.client.AMQP.Exchange.Declare
276276
* @see com.rabbitmq.client.AMQP.Exchange.DeclareOk
277277
* @param exchange the name of the exchange
@@ -300,7 +300,7 @@ Exchange.DeclareOk exchangeDeclare(String exchange, String type, boolean durable
300300
* @return a declaration-confirm method to indicate the exchange was successfully declared
301301
* @throws java.io.IOException if an error is encountered
302302
*/
303-
public Exchange.DeclareOk exchangeDeclare(String exchange,
303+
Exchange.DeclareOk exchangeDeclare(String exchange,
304304
String type,
305305
boolean durable,
306306
boolean autoDelete,

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ public Exchange.DeclareOk exchangeDeclare(String exchange, String type,
535535
arguments)).getMethod();
536536
}
537537

538-
539538
/** Public API - {@inheritDoc} */
540539
public Exchange.DeclareOk exchangeDeclare(String exchange, String type,
541540
boolean durable)

0 commit comments

Comments
 (0)