1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-27 22:04:50 +02: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();
return xml;
}
@Override
public String toString() {
return toXML().toString();
}
}
}