3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-07 23:03:04 +00:00

Remove a couple of checkNotLocked asserts that didn't get deleted last time.

This commit is contained in:
Mike Hearn 2013-03-19 15:40:31 +01:00
parent 7696835f86
commit b7eab44990

View File

@ -519,7 +519,6 @@ public class PeerGroup extends AbstractIdleService {
/** Picks a peer from discovery and connects to it. If connection fails, picks another and tries again. */
protected void connectToAnyPeer() throws PeerDiscoveryException {
checkState(!lock.isLocked());
final State state = state();
if (!(state == State.STARTING || state == State.RUNNING)) return;
@ -691,7 +690,6 @@ public class PeerGroup extends AbstractIdleService {
// Internal version.
protected ChannelFuture connectTo(SocketAddress address, boolean incrementMaxConnections) {
checkState(!lock.isLocked());
ChannelFuture future = bootstrap.connect(address);
// Make sure that the channel group gets access to the channel only if it connects successfully (otherwise
// it cannot be closed and trying to do so will cause problems).