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

@ -137,7 +137,7 @@ public class JivePropertiesExtension implements PacketExtension {
@Override
public CharSequence toXML() {
XmlStringBuilder xml = new XmlStringBuilder(this);
xml.rightAngelBracket();
xml.rightAngleBracket();
// Loop through all properties and write them out.
for (String name : getPropertyNames()) {
Object value = getProperty(name);
@ -209,7 +209,7 @@ public class JivePropertiesExtension implements PacketExtension {
}
}
xml.attribute("type", type);
xml.rightAngelBracket();
xml.rightAngleBracket();
xml.escape(valueStr);
xml.closeElement("value");
xml.closeElement("property");