1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-17 17:04:49 +02:00

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
This commit is contained in:
Matt Tucker 2003-05-08 15:54:51 +00:00 committed by mtucker
parent cdd78ecbe6
commit d6d875b83b

View file

@ -107,11 +107,6 @@ public class IQ extends Packet {
buf.append(queryXML);
}
buf.append("</iq>");
// 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) {