Author: toad
Date: 2007-03-31 22:09:27 +0000 (Sat, 31 Mar 2007)
New Revision: 12496
Modified:
trunk/freenet/src/freenet/node/Version.java
Log:
1026:
- fix more bucket errors:
-- don't schedule each check block twice (bug caused 33% performance loss and
frequent failure of inserts since ~ 1021)
-- more double-closes in BucketTools (mostly non-fatal)
- fix race condition/sync issues resulting in NPE in NetworkInterface
construction
- don't call SplitFileInserter.encodedSegment twice per segment
- comments, indents
Modified: trunk/freenet/src/freenet/node/Version.java
===================================================================
--- trunk/freenet/src/freenet/node/Version.java 2007-03-31 21:37:23 UTC (rev
12495)
+++ trunk/freenet/src/freenet/node/Version.java 2007-03-31 22:09:27 UTC (rev
12496)
@@ -24,7 +24,7 @@
public static final String protocolVersion = "1.0";
/** The build number of the current revision */
- private static final int buildNumber = 1025;
+ private static final int buildNumber = 1026;
/** Oldest build of Fred we will talk to */
private static final int oldLastGoodBuild = 1016;