1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2025-09-10 01:29:38 +02:00

fixed a typo in method name getExtensionsXML, made Presence's toXML method refer to that method in building it's XML.. PENDING - this needs to be done for the other packets as well...

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1949 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
loki 2003-05-27 15:07:13 +00:00
parent ddaf5d9bfd
commit 92d8dc21fc
3 changed files with 6 additions and 2 deletions

View file

@ -369,7 +369,7 @@ public abstract class Packet {
* @return the extension sub-packets as XML or the Empty String if there
* are no packet extensions.
*/
protected synchronized String getExtentionsXML() {
protected synchronized String getExtensionsXML() {
StringBuffer buf = new StringBuffer();
// Add in all standard extension sub-packets.
Iterator extensions = getExtensions();