diff options
author | Henri Beauchamp <sldev@free.fr> | 2024-07-08 23:31:43 +0200 |
---|---|---|
committer | Henri Beauchamp <sldev@free.fr> | 2024-07-08 23:31:43 +0200 |
commit | 0df35799a39b8a76d13ccb4c1ab4d57a0ab6d129 (patch) | |
tree | 3efd80f302ccd4b173ca81f9fdbab85e09d6965e | |
parent | 989cfe2f70441fe02222d369e84118a94dc96890 (diff) |
Remove a remnant of debug code.
-rw-r--r-- | indra/llxml/llxmlnode.cpp | 2 |
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; } |