Author: toad
Date: 2008-10-18 22:08:48 +0000 (Sat, 18 Oct 2008)
New Revision: 23003
Modified:
branches/db4o/freenet/src/freenet/node/NodeRestartJobsQueue.java
Log:
indenting
Modified: branches/db4o/freenet/src/freenet/node/NodeRestartJobsQueue.java
===================================================================
--- branches/db4o/freenet/src/freenet/node/NodeRestartJobsQueue.java
2008-10-18 22:08:25 UTC (rev 23002)
+++ branches/db4o/freenet/src/freenet/node/NodeRestartJobsQueue.java
2008-10-18 22:08:48 UTC (rev 23003)
@@ -53,15 +53,15 @@
public void queueRestartJob(DBJob job, int priority, ObjectContainer
container) {
container.activate(dbJobs[priority], 1);
if(dbJobs[priority].add(job)) {
- /*
- * Store to 1 hop only.
- * Otherwise db4o will update ALL the jobs on the queue to a
depth of 3,
- * which in practice means all the buckets inside the
BucketChainBucket's
- * linked by the BucketChainBucketKillTag's (adding new ones).
This will
- * take ages and is in any case not what we want.
- * See http://tracker.db4o.com/browse/COR-1436
- */
- container.ext().store(dbJobs[priority], 1);
+ /*
+ * Store to 1 hop only.
+ * Otherwise db4o will update ALL the jobs on the queue
to a depth of 3,
+ * which in practice means all the buckets inside the
BucketChainBucket's
+ * linked by the BucketChainBucketKillTag's (adding new
ones). This will
+ * take ages and is in any case not what we want.
+ * See http://tracker.db4o.com/browse/COR-1436
+ */
+ container.ext().store(dbJobs[priority], 1);
}
container.deactivate(dbJobs[priority], 1);
}