From 41d274a5f9ce12893d80d66f63d7352e42eb4802 Mon Sep 17 00:00:00 2001 From: Gaston Dombiak Date: Tue, 7 Jun 2005 20:41:22 +0000 Subject: [PATCH] Fix to let specify a custom debugger git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2497 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/XMPPConnection.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/org/jivesoftware/smack/XMPPConnection.java b/source/org/jivesoftware/smack/XMPPConnection.java index 0254684c8..7cf19b8fd 100644 --- a/source/org/jivesoftware/smack/XMPPConnection.java +++ b/source/org/jivesoftware/smack/XMPPConnection.java @@ -737,7 +737,7 @@ public class XMPPConnection { // Use try block since we may not have permission to get a system // property (for example, when an applet). try { - System.getProperty("smack.debuggerClass"); + className = System.getProperty("smack.debuggerClass"); } catch (Throwable t) { }