From d6d875b83b258d417b38b359f8a20add3bd4c640 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Thu, 8 May 2003 15:54:51 +0000 Subject: [PATCH] IQ packets should never include properties since doing so violates the XMPP spec. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1925 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/packet/IQ.java | 5 ----- 1 file changed, 5 deletions(-) diff --git a/source/org/jivesoftware/smack/packet/IQ.java b/source/org/jivesoftware/smack/packet/IQ.java index f5182a458..fc0e8e270 100644 --- a/source/org/jivesoftware/smack/packet/IQ.java +++ b/source/org/jivesoftware/smack/packet/IQ.java @@ -107,11 +107,6 @@ public class IQ extends Packet { buf.append(queryXML); } buf.append(""); - // Add packet properties, if any are defined. - String propertiesXML = getPropertiesXML(); - if (propertiesXML != null) { - buf.append(propertiesXML); - } // Add the error sub-packet, if there is one. XMPPError error = getError(); if (error != null) {