1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-11-22 14:22:05 +01:00

Add DiscoverItems.Item.toString()

This commit is contained in:
Florian Schmaus 2019-05-23 23:06:39 +02:00
parent 04238bd36a
commit d337474a86

View file

@ -237,5 +237,10 @@ public class DiscoverItems extends IQ {
xml.closeEmptyElement(); xml.closeEmptyElement();
return xml; return xml;
} }
@Override
public String toString() {
return toXML().toString();
}
} }
} }