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

@ -227,7 +227,7 @@ public class Message extends Packet {
}
}
// Add packet extensions, if any are defined.
buf.append(getExtentionsXML());
buf.append(getExtensionsXML());
buf.append("</message>");
return buf.toString();
}