mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
Fix AffiliationsExtension.toXml()
Fixes SMACK-789.
This commit is contained in:
parent
47940ba5ad
commit
ca1852f6e0
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ public class AffiliationsExtension extends NodeExtension
|
||||||
{
|
{
|
||||||
// Can't use XmlStringBuilder(this), because we don't want the namespace to be included
|
// Can't use XmlStringBuilder(this), because we don't want the namespace to be included
|
||||||
XmlStringBuilder xml = new XmlStringBuilder();
|
XmlStringBuilder xml = new XmlStringBuilder();
|
||||||
xml.openElement(getElementName());
|
xml.halfOpenElement(getElementName());
|
||||||
xml.optAttribute("node", node);
|
xml.optAttribute("node", node);
|
||||||
xml.rightAngleBracket();
|
xml.rightAngleBracket();
|
||||||
xml.append(items);
|
xml.append(items);
|
||||||
|
|
Loading…
Reference in a new issue