Skip to content

Commit 88514f5

Browse files
author
Rob Harrop
committed
Whitespace and JavaDoc
1 parent 77b5fb7 commit 88514f5

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

src/com/rabbitmq/client/UnexpectedMethodError.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
* Indicates that a {@link Method} object was supplied that was not
2222
* expected. For instance, {@link Channel#basicGet} throws this if it
2323
* receives anything other than {@link AMQP.Basic.GetOk} or
24-
* {@link AMQP.Basic.GetEmpty}, and the default {@link MethodVisitor}
24+
* {@link AMQP.Basic.GetEmpty}, and the
25+
* {@link com.rabbitmq.client.impl.AMQImpl.DefaultMethodVisitor}
2526
* throws this as the action within each visitor case.
2627
*/
2728
public class UnexpectedMethodError extends Error {

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

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,11 @@
2828
import com.rabbitmq.utility.BlockingValueOrException;
2929

3030
/**
31-
* Base class modelling an AMQ channel. Subclasses implement {@link #close()}
32-
* and {@link #processAsync()}, and may choose to override
33-
* {@link processShutdownSignal()} and {@link rpc()}.
31+
* Base class modelling an AMQ channel. Subclasses implement
32+
* {@link com.rabbitmq.client.Channel#close} and
33+
* {@link #processAsync processAsync()}, and may choose to override
34+
* {@link #processShutdownSignal processShutdownSignal()} and
35+
* {@link #rpc rpc()}.
3436
*
3537
* @see ChannelN
3638
* @see Connection
@@ -253,7 +255,7 @@ public void processShutdownSignal(ShutdownSignalException signal,
253255
try {
254256
synchronized (_channelMutex) {
255257
if (!setShutdownCauseIfOpen(signal)) {
256-
if (!ignoreClosed)
258+
if (!ignoreClosed)
257259
throw new AlreadyClosedException("Attempt to use closed channel", this);
258260
}
259261

0 commit comments

Comments
 (0)