Author: nextgens
Date: 2006-09-03 09:58:09 +0000 (Sun, 03 Sep 2006)
New Revision: 10380

Modified:
   trunk/freenet/src/freenet/node/PeerNode.java
Log:
In fact we should avoid locking there.

Modified: trunk/freenet/src/freenet/node/PeerNode.java
===================================================================
--- trunk/freenet/src/freenet/node/PeerNode.java        2006-09-03 09:50:19 UTC 
(rev 10379)
+++ trunk/freenet/src/freenet/node/PeerNode.java        2006-09-03 09:58:09 UTC 
(rev 10380)
@@ -1411,7 +1411,7 @@
                                Logger.minor(this, "No ARK for "+this+" !!!!");
                                return;
                        }
-                       if(isListenOnly()){
+                       if(isListenOnly){
                                Logger.minor(this, "Not starting ark fetcher 
for "+this+" as it's in listen-only mode.");
                        }else{
                                Logger.minor(this, "Starting ARK fetcher for 
"+this+" : "+myARK);


Reply via email to