From 18d42ec925c5729413f89324c55dfbd3e66a6e34 Mon Sep 17 00:00:00 2001
From: sponge <sponge@mail.i2p>
Date: Tue, 7 Oct 2008 20:00:08 +0000
Subject: [PATCH] A few fixes to make BOB a little more quiet, there is
 possibly a little left, though.

---
 apps/BOB/src/net/i2p/BOB/I2PtoTCP.java |  9 +++------
 apps/BOB/src/net/i2p/BOB/TCPtoI2P.java | 15 +++++----------
 2 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java b/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java
index 58253542d8..b62e5b782f 100644
--- a/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java
+++ b/apps/BOB/src/net/i2p/BOB/I2PtoTCP.java
@@ -89,18 +89,15 @@ public class I2PtoTCP implements Runnable {
 				}
 			}
 
-		} catch(UnknownHostException ex) {
-			// OOPS!
-		} catch(IOException ex) {
-			// OOPS!
+		} catch(Exception e) {
 		}
 		try {
 			I2P.close();
-		} catch(IOException ex) {
+		} catch(Exception e) {
 		}
 		try {
 			sock.close();
-		} catch(IOException ex) {
+		} catch(Exception e) {
 		}
 	}
 }
diff --git a/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java b/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java
index c1f1ba8e6d..51d279ee4b 100644
--- a/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java
+++ b/apps/BOB/src/net/i2p/BOB/TCPtoI2P.java
@@ -33,7 +33,6 @@ import java.net.Socket;
 import net.i2p.I2PException;
 import net.i2p.client.streaming.I2PSocket;
 import net.i2p.client.streaming.I2PSocketManager;
-import net.i2p.data.DataFormatException;
 import net.i2p.data.Destination;
 import net.i2p.i2ptunnel.I2PTunnel;
 
@@ -56,9 +55,9 @@ public class TCPtoI2P implements Runnable {
 	 * 
 	 * @param in
 	 * @return line of text as a String
-	 * @throws java.io.IOException
+	 * @throws Exception 
 	 */
-	public static String Lread(InputStream in) throws IOException {
+	public static String Lread(InputStream in) throws Exception {
 		String S;
 		int b;
 		char c;
@@ -163,23 +162,19 @@ public class TCPtoI2P implements Runnable {
 					Emsg("ERROR " + e.toString(), out);
 				}
 
-			} catch(DataFormatException e) {
-				Emsg("ERROR " + e.toString(), out);
-			} catch(NullPointerException e) {
+			} catch(Exception e) {
 				Emsg("ERROR " + e.toString(), out);
 			}
 		} catch(IOException ioe) {
 		}
 		try {
 			I2P.close();
-		} catch(IOException ex) {
-		} catch(NullPointerException e) {
+		} catch(Exception e) {
 		}
 
 		try {
 			sock.close();
-		} catch(IOException ex) {
-		} catch(NullPointerException e) {
+		} catch(Exception e) {
 		}
 	}
 }
-- 
GitLab