From d7e0aeaac55333a7150f6680685ea4fbe0e64907 Mon Sep 17 00:00:00 2001 From: Shu Lei Date: Thu, 29 Nov 2007 22:59:09 +0000 Subject: [PATCH] bug fix --- src/debug/org/luaj/debug/net/j2se/DebugSupportImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug/org/luaj/debug/net/j2se/DebugSupportImpl.java b/src/debug/org/luaj/debug/net/j2se/DebugSupportImpl.java index 30c1d24b..66102665 100644 --- a/src/debug/org/luaj/debug/net/j2se/DebugSupportImpl.java +++ b/src/debug/org/luaj/debug/net/j2se/DebugSupportImpl.java @@ -148,7 +148,7 @@ public class DebugSupportImpl extends DebugSupport { new Thread(clientConnectionTask).start(); } } - } finally { + } catch (IOException e) { dispose(); } }