Author: toad
Date: 2008-10-09 13:10:16 +0000 (Thu, 09 Oct 2008)
New Revision: 22977

Modified:
   branches/db4o/freenet/src/freenet/client/async/BaseSingleFileFetcher.java
Log:
Clarify slightly


Modified: 
branches/db4o/freenet/src/freenet/client/async/BaseSingleFileFetcher.java
===================================================================
--- branches/db4o/freenet/src/freenet/client/async/BaseSingleFileFetcher.java   
2008-10-09 13:09:50 UTC (rev 22976)
+++ branches/db4o/freenet/src/freenet/client/async/BaseSingleFileFetcher.java   
2008-10-09 13:10:16 UTC (rev 22977)
@@ -329,7 +329,8 @@
                if(finished) return null;
                Key newKey = key.getNodeKey().cloneKey();
                short prio = parent.getPriorityClass();
-               KeyListener ret = new SingleKeyListener(newKey, this, 
!ctx.cacheLocalRequests, prio, persistent);
+               boolean dontCache = !ctx.cacheLocalRequests;
+               KeyListener ret = new SingleKeyListener(newKey, this, 
dontCache, prio, persistent);
                if(persistent) {
                        container.deactivate(key, 5);
                        container.deactivate(parent, 1);


Reply via email to