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(getItem());
xml.optElement("password", getPassword());
for (Status status : statusCodes) {
xml.element(status);
}
xml.append(statusCodes);
xml.optElement(getDestroy());
xml.closeElement(this);
return xml;