fix a bug introduced by the last correction

cusax-fix
Benoit Pradelle 19 years ago
parent 024da067c7
commit afdd5fa126

@ -3217,7 +3217,7 @@ public void setPidfPresenceStatus(String presenceDoc)
index = basicList.getLength() - 1;
Node basicNode = null;
do {
Node temp = statusList.item(index);
Node temp = basicList.item(index);
if (temp.getNodeType() == Node.ELEMENT_NODE) {
basicNode = temp;
break;
@ -3287,6 +3287,7 @@ private String getTextContent(Element node) {
String res = XMLUtils.getText(node);
if (res == null) {
logger.warn("no text for element '" + node.getNodeName() + "'");
return "";
}

@ -7,6 +7,7 @@ Import-Package: org.osgi.framework,
org.w3c.dom,
net.java.sip.communicator.service.configuration,
net.java.sip.communicator.util,
net.java.sip.communicator.util.xml,
net.java.sip.communicator.service.configuration.event,
net.java.sip.communicator.service.protocol,
net.java.sip.communicator.service.protocol.event,

Loading…
Cancel
Save