Use new XmlStringBuilder.append(Collection<? extends Element>) in MUCUser

This commit is contained in:
Florian Schmaus 2015-01-02 00:14:04 +01:00
parent f2703bc195
commit 1f38e4ca0d
1 changed files with 1 additions and 3 deletions

View File

@ -63,9 +63,7 @@ public class MUCUser implements PacketExtension {
xml.optElement(getDecline()); xml.optElement(getDecline());
xml.optElement(getItem()); xml.optElement(getItem());
xml.optElement("password", getPassword()); xml.optElement("password", getPassword());
for (Status status : statusCodes) { xml.append(statusCodes);
xml.element(status);
}
xml.optElement(getDestroy()); xml.optElement(getDestroy());
xml.closeElement(this); xml.closeElement(this);
return xml; return xml;