1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-12-12 14:01:08 +01:00

Fix typo in XmlStringBuilder, it's not an Angel

s/rightAngelBracket/rightAngleBracket/
This commit is contained in:
Florian Schmaus 2014-08-20 21:25:14 +02:00
parent 066a4d6c9e
commit bbf89c65bf
33 changed files with 77 additions and 62 deletions

View file

@ -175,7 +175,7 @@ public class DiscoverInfo extends IQ implements Cloneable {
xml.halfOpenElement("query");
xml.xmlnsAttribute(NAMESPACE);
xml.optAttribute("node", getNode());
xml.rightAngelBracket();
xml.rightAngleBracket();
for (Identity identity : identities) {
xml.append(identity.toXML());
}

View file

@ -102,7 +102,7 @@ public class DiscoverItems extends IQ {
xml.halfOpenElement("query");
xml.xmlnsAttribute(NAMESPACE);
xml.optAttribute("node", getNode());
xml.rightAngelBracket();
xml.rightAngleBracket();
for (Item item : items) {
xml.append(item.toXML());