From 0088750b16f876d66e101e12bc59014bbdd04b17 Mon Sep 17 00:00:00 2001
From: sponge <sponge@mail.i2p>
Date: Thu, 23 Jul 2009 00:09:32 +0000
Subject: [PATCH] 2009-07-23 sponge     * Fix jdk 1.6izm in BOB as per zzz

---
 apps/BOB/src/net/i2p/BOB/MUXlisten.java           | 2 +-
 history.txt                                       | 3 +++
 router/java/src/net/i2p/router/RouterVersion.java | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/apps/BOB/src/net/i2p/BOB/MUXlisten.java b/apps/BOB/src/net/i2p/BOB/MUXlisten.java
index ca7d644971..c91a8743cf 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 019e6cceed..8bc1dc0bb1 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 4c8aefc89f..40028c0e07 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;
-- 
GitLab