1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-23 03:54:54 +02:00

Fix typo in CapsExtensionProvider: s/elment/element/

This commit is contained in:
Florian Schmaus 2016-01-17 18:07:06 +01:00
parent 23201d5f0f
commit 89bd13318a

View file

@ -51,7 +51,7 @@ public class CapsExtensionProvider extends ExtensionElementProvider<CapsExtensio
if (hash != null && version != null && node != null) {
return new CapsExtension(node, version, hash);
} else {
throw new SmackException("Caps elment with missing attributes. Attributes: hash=" + hash + " version="
throw new SmackException("Caps element with missing attributes. Attributes: hash=" + hash + " version="
+ version + " node=" + node);
}
}