diff --git a/apps/i2psnark/java/src/org/klomp/snark/Snark.java b/apps/i2psnark/java/src/org/klomp/snark/Snark.java index 6ee711ecd..82b197a34 100644 --- a/apps/i2psnark/java/src/org/klomp/snark/Snark.java +++ b/apps/i2psnark/java/src/org/klomp/snark/Snark.java @@ -670,12 +670,7 @@ public class Snark + " pieces: "); checking = true; } - if (checking) - if (checked) - System.out.print("+"); - else - System.out.print("-"); - else + if (!checking) Snark.debug("Got " + (checked ? "" : "BAD ") + "piece: " + num, Snark.INFO); } diff --git a/history.txt b/history.txt index 74cb290cd..72cc770a3 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,7 @@ -$Id: history.txt,v 1.427 2006/03/05 02:44:59 complication Exp $ +$Id: history.txt,v 1.428 2006/03/05 12:07:15 jrandom Exp $ + +2006-03-05 zzz + * Remove the +++--- from the logs on i2psnark startup 2006-03-05 jrandom * HTML fixes in Syndie to work better with opera (thanks shaklen!) diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 769187c88..b99724813 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -15,9 +15,9 @@ import net.i2p.CoreVersion; * */ public class RouterVersion { - public final static String ID = "$Revision: 1.368 $ $Date: 2006/03/05 02:45:00 $"; + public final static String ID = "$Revision: 1.369 $ $Date: 2006/03/05 12:07:13 $"; public final static String VERSION = "0.6.1.12"; - public final static long BUILD = 6; + public final static long BUILD = 7; public static void main(String args[]) { System.out.println("I2P Router version: " + VERSION + "-" + BUILD); System.out.println("Router ID: " + RouterVersion.ID);