Modified #getChildElementXML to include possible extensions

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2263 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-03-29 21:32:41 +00:00 committed by gdombiak
parent 1c424c3449
commit e11081b60d
1 changed files with 2 additions and 0 deletions

View File

@ -181,6 +181,8 @@ public class Registration extends IQ {
buf.append("</").append(name).append(">");
}
}
// Add packet extensions, if any are defined.
buf.append(getExtensionsXML());
buf.append("</query>");
return buf.toString();
}