build tweak
This commit is contained in:
@ -755,7 +755,7 @@
|
||||
</target>
|
||||
<target name="findbugs" depends="build2">
|
||||
<echo message="Starting findbugs, this will take a while..." />
|
||||
<exec executable="nice">
|
||||
<exec executable="nice" failonerror="true">
|
||||
<arg value="findbugs"/>
|
||||
<arg value="-textui"/>
|
||||
<arg value="-projectName"/>
|
||||
|
@ -1,3 +1,12 @@
|
||||
2011-01-09 zzz
|
||||
* DataHelper: Speed up and annotate sortStructures()
|
||||
* Data Structures: More caching improvements, don't cache where we shouldn't
|
||||
* NetDB: Don't rescan netDb directory unless changed,
|
||||
to reduce Hash cache thrash (backport from test4)
|
||||
* RouterInfo:
|
||||
- Don't cache byteified data by default, to save ~1.5 MB
|
||||
- Don't create empty peers Set, to save ~100KB
|
||||
|
||||
2011-01-07 zzz
|
||||
* Data Structures: More caching
|
||||
* i2psnark: Improve request tracking to reduce memory usage
|
||||
|
@ -18,7 +18,7 @@ public class RouterVersion {
|
||||
/** deprecated */
|
||||
public final static String ID = "Monotone";
|
||||
public final static String VERSION = CoreVersion.VERSION;
|
||||
public final static long BUILD = 9;
|
||||
public final static long BUILD = 10;
|
||||
|
||||
/** for example "-test" */
|
||||
public final static String EXTRA = "";
|
||||
|
Reference in New Issue
Block a user