Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
normanmaurer committed Aug 1, 2012
1 parent a442789 commit 3992472
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,6 @@ public final class NioDatagramChannel
private final Map<InetAddress, List<MembershipKey>> memberships =
new HashMap<InetAddress, List<MembershipKey>>();

private volatile boolean connected;

private static DatagramChannel newSocket() {
try {
return DatagramChannel.open();
Expand Down Expand Up @@ -151,7 +149,6 @@ protected boolean doConnect(SocketAddress remoteAddress,
try {
javaChannel().connect(remoteAddress);
selectionKey().interestOps(selectionKey().interestOps() | SelectionKey.OP_READ);
connected = true;
success = true;
return true;
} finally {
Expand Down

0 comments on commit 3992472

Please sign in to comment.