From f5371f42a711ba52abb7ddc82490faab6bad600e Mon Sep 17 00:00:00 2001 From: Alex Wenckus Date: Tue, 14 Nov 2006 21:59:39 +0000 Subject: [PATCH] Fix git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@6107 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/XMPPConnection.java | 8 -------- 1 file changed, 8 deletions(-) diff --git a/source/org/jivesoftware/smack/XMPPConnection.java b/source/org/jivesoftware/smack/XMPPConnection.java index 946caf4b4..9d77d9cf1 100644 --- a/source/org/jivesoftware/smack/XMPPConnection.java +++ b/source/org/jivesoftware/smack/XMPPConnection.java @@ -783,14 +783,6 @@ public class XMPPConnection { return packetReader.createPacketCollector(packetFilter); } - public PacketCollector createPacketCollector(PacketFilter packetFilter, boolean debugMode) { - if(debugMode) { - return new DebuggingPacketCollector(packetReader, packetFilter); - } else { - return packetReader.createPacketCollector(packetFilter); - } - } - /** * Adds a connection listener to this connection that will be notified when * the connection closes or fails. The connection needs to already be connected