Skip to content

Commit d7cb82f

Browse files
author
Steve Powell
committed
Missed an unused var opportunity.
1 parent 85a473e commit d7cb82f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ public boolean processControlCommand(Command c) throws IOException
578578
// Already shutting down, so just send back a CloseOk.
579579
try {
580580
_channel0.quiescingTransmit(new AMQP.Connection.CloseOk.Builder().build());
581-
} catch (IOException ioe) { } // ignore
581+
} catch (IOException _) { } // ignore
582582
return true;
583583
} else if (method instanceof AMQP.Connection.CloseOk) {
584584
// It's our final "RPC". Time to shut down.

0 commit comments

Comments
 (0)