Author: saces
Date: 2009-02-18 16:06:41 +0000 (Wed, 18 Feb 2009)
New Revision: 25687

Modified:
   
branches/db4o/freenet/src/freenet/client/async/USKProxyCompletionCallback.java
Log:
fix a NPE (typo)

Modified: 
branches/db4o/freenet/src/freenet/client/async/USKProxyCompletionCallback.java
===================================================================
--- 
branches/db4o/freenet/src/freenet/client/async/USKProxyCompletionCallback.java  
    2009-02-18 15:57:40 UTC (rev 25686)
+++ 
branches/db4o/freenet/src/freenet/client/async/USKProxyCompletionCallback.java  
    2009-02-18 16:06:41 UTC (rev 25687)
@@ -48,7 +48,7 @@
                        e = new FetchException(e, uri);
                }
                cb.onFailure(e, state, container, context);
-               if(!persistent) removeFrom(container);
+               if(persistent) removeFrom(container);
        }
 
        public void onBlockSetFinished(ClientGetState state, ObjectContainer 
container, ClientContext context) {

_______________________________________________
cvs mailing list
[email protected]
http://emu.freenetproject.org/cgi-bin/mailman/listinfo/cvs

Reply via email to