Skip to content

Commit

Permalink
Fix in DiscoveryService.stop() method
Browse files Browse the repository at this point in the history
  • Loading branch information
sarxos committed Mar 16, 2013
1 parent abe198b commit 3260243
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public synchronized void stop() {

running = false;

if (runner != null) {
if (runner == null) {
return;
}

Expand Down

0 comments on commit 3260243

Please sign in to comment.