Author: toad
Date: 2008-07-30 22:11:26 +0000 (Wed, 30 Jul 2008)
New Revision: 21512
Modified:
branches/db4o/freenet/src/freenet/client/async/SingleBlockInserter.java
Log:
Use passed-in value of persistent
Modified:
branches/db4o/freenet/src/freenet/client/async/SingleBlockInserter.java
===================================================================
--- branches/db4o/freenet/src/freenet/client/async/SingleBlockInserter.java
2008-07-30 22:10:14 UTC (rev 21511)
+++ branches/db4o/freenet/src/freenet/client/async/SingleBlockInserter.java
2008-07-30 22:11:26 UTC (rev 21512)
@@ -56,7 +56,7 @@
private int consecutiveRNFs;
public SingleBlockInserter(BaseClientPutter parent, Bucket data, short
compressionCodec, FreenetURI uri, InsertContext ctx, PutCompletionCallback cb,
boolean isMetadata, int sourceLength, int token, boolean getCHKOnly, boolean
addToParent, boolean dontSendEncoded, Object tokenObject, ObjectContainer
container, ClientContext context, boolean persistent) {
- super(parent.persistent());
+ super(persistent);
assert(persistent == parent.persistent());
this.consecutiveRNFs = 0;
this.tokenObject = tokenObject;