Fixed a bug in the XML representation by adding some missing inverted commas

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2308 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2004-05-13 17:33:21 +00:00 committed by gdombiak
parent 1da02cbfd8
commit 6793015fe9
2 changed files with 8 additions and 6 deletions

View File

@ -161,12 +161,13 @@ public class DiscoverInfo extends IQ {
public String getChildElementXML() {
StringBuffer buf = new StringBuffer();
buf.append("<query xmlns=\"http://jabber.org/protocol/disco#info");
buf.append("<query xmlns=\"http://jabber.org/protocol/disco#info\"");
if (getNode() != null) {
buf.append(" node=");
buf.append(" node=\"");
buf.append(getNode());
buf.append("\"");
}
buf.append("\">");
buf.append(">");
synchronized (identities) {
for (int i = 0; i < identities.size(); i++) {
Identity identity = (Identity) identities.get(i);

View File

@ -120,12 +120,13 @@ public class DiscoverItems extends IQ {
public String getChildElementXML() {
StringBuffer buf = new StringBuffer();
buf.append("<query xmlns=\"http://jabber.org/protocol/disco#items");
buf.append("<query xmlns=\"http://jabber.org/protocol/disco#items\"");
if (getNode() != null) {
buf.append(" node=");
buf.append(" node=\"");
buf.append(getNode());
buf.append("\"");
}
buf.append("\">");
buf.append(">");
synchronized (items) {
for (int i = 0; i < items.size(); i++) {
Item item = (Item) items.get(i);