From 88abe3faa35146aa1076bf07bab4c2fe23c66eca Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Fri, 27 Sep 2013 17:35:47 +0200 Subject: [PATCH] PeerGroup: fix usage of _ as identifier. --- core/src/main/java/com/google/bitcoin/core/PeerGroup.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/google/bitcoin/core/PeerGroup.java b/core/src/main/java/com/google/bitcoin/core/PeerGroup.java index ff768ea8..de228ad6 100644 --- a/core/src/main/java/com/google/bitcoin/core/PeerGroup.java +++ b/core/src/main/java/com/google/bitcoin/core/PeerGroup.java @@ -1290,7 +1290,7 @@ public class PeerGroup extends AbstractIdleService implements TransactionBroadca // any peer discovery source and the user just calls connectTo() once. if (minConnections == 1) { sendComplete.addListener(new ChannelFutureListener() { - public void operationComplete(ChannelFuture operation) throws Exception { + public void operationComplete(ChannelFuture ignored) throws Exception { for (Wallet wallet : wallets) { try { // Assumption here is there are no dependencies of the created transaction.