summaryrefslogtreecommitdiff
path: root/indra/llxml
diff options
context:
space:
mode:
authorHenri Beauchamp <sldev@free.fr>2024-07-08 23:31:43 +0200
committerHenri Beauchamp <sldev@free.fr>2024-07-08 23:31:43 +0200
commit0df35799a39b8a76d13ccb4c1ab4d57a0ab6d129 (patch)
tree3efd80f302ccd4b173ca81f9fdbab85e09d6965e /indra/llxml
parent989cfe2f70441fe02222d369e84118a94dc96890 (diff)
Remove a remnant of debug code.
Diffstat (limited to 'indra/llxml')
-rw-r--r--indra/llxml/llxmlnode.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/indra/llxml/llxmlnode.cpp b/indra/llxml/llxmlnode.cpp
index 8eb4556828..d6f9a56c9d 100644
--- a/indra/llxml/llxmlnode.cpp
+++ b/indra/llxml/llxmlnode.cpp
@@ -3286,7 +3286,6 @@ bool LLXMLNode::parseXmlRpcArrayValue(LLSD& target)
<< LL_ENDL;
return false;
}
- U32 i = 0;
for (LLXMLNode* itemp = datap->getFirstChild().get(); itemp;
itemp = itemp->getNextSibling().get())
{
@@ -3296,7 +3295,6 @@ bool LLXMLNode::parseXmlRpcArrayValue(LLSD& target)
return false;
}
target.append(value);
- ++i;
}
return true;
}