Author: toad
Date: 2008-06-05 22:25:19 +0000 (Thu, 05 Jun 2008)
New Revision: 20232

Modified:
   branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
Log:
trivial

Modified: 
branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
===================================================================
--- branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java  
2008-06-05 22:24:48 UTC (rev 20231)
+++ branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java  
2008-06-05 22:25:19 UTC (rev 20232)
@@ -259,7 +259,7 @@
                                if(logMINOR)
                                        Logger.minor(this, "Decode failed: "+e, 
e);
                                if(!persistent)
-                                       getter.onFailure(new 
LowLevelGetException(LowLevelGetException.DECODE_FAILED), tok, this, persistent 
? selectorContainer : null, clientContext);
+                                       getter.onFailure(new 
LowLevelGetException(LowLevelGetException.DECODE_FAILED), tok, this, null, 
clientContext);
                                else {
                                        final SendableGet g = getter;
                                        final Object token = tok;
@@ -275,7 +275,7 @@
                        if(block != null) {
                                if(logMINOR) Logger.minor(this, "Can fulfill 
"+getter+" ("+tok+") immediately from store");
                                if(!persistent)
-                                       getter.onSuccess(block, true, tok, 
this, persistent ? selectorContainer : null, clientContext);
+                                       getter.onSuccess(block, true, tok, 
this, null, clientContext);
                                else {
                                        final ClientKeyBlock b = block;
                                        final Object t = tok;


Reply via email to