diff --git a/apps/BOB/src/net/i2p/BOB/MUXlisten.java b/apps/BOB/src/net/i2p/BOB/MUXlisten.java index ca7d6449716d6ea8967849dde489e1258d43f0f2..c91a8743cfa385584cb1866b004b69768bb7039c 100644 --- a/apps/BOB/src/net/i2p/BOB/MUXlisten.java +++ b/apps/BOB/src/net/i2p/BOB/MUXlisten.java @@ -125,7 +125,7 @@ public class MUXlisten implements Runnable { this.info.add("STARTING", new Boolean(false)); this.info.releaseWriteLock(); this.database.releaseWriteLock(); - throw new IOException(e); + throw new IOException(e.toString()); } catch (RuntimeException e) { // Something went bad. this.database.getWriteLock(); diff --git a/history.txt b/history.txt index 019e6cceed773d693410692db86dfbaad853a9c4..8bc1dc0bb161b0d88002e88ce6078e22731c8b23 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,6 @@ +2009-07-23 sponge + * Fix jdk 1.6izm in BOB as per zzz + 2009-07-22 dr|z3d * More work on the I2PSnark UI. * Start of improvements to tunnel table data. diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 4c8aefc89f6dd4518753c53ae89c5a95738b6c6a..40028c0e07d435fba561326cfb59f22e74eef24c 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -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 = 18; + public final static long BUILD = 19; /** for example "-test" */ public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;