Kaydet (Commit) 958a95d0 authored tarafından rbuj's avatar rbuj Kaydeden (comit) David Tardon

xmerge: Remove local variable name conflict

Change-Id: Id1708504934588c2e881bf249bc07bc61dc2c3c6
Reviewed-on: https://gerrit.libreoffice.org/10690Reviewed-by: 's avatarDavid Tardon <dtardon@redhat.com>
Tested-by: 's avatarDavid Tardon <dtardon@redhat.com>
üst de024170
......@@ -355,10 +355,10 @@ public abstract class NodeIterator implements Iterator {
// (can be optimized in future)
String nodeName = node.getNodeName();
if ( cc_ == null || cc_.canConvertTag(nodeName)) {
NodeList nodeList = node.getChildNodes();
int nodeListLength = nodeList.getLength();
NodeList auxNodeList = node.getChildNodes();
int nodeListLength = auxNodeList.getLength();
for (int i = 0; i < nodeListLength; i++) {
markTree(nodeList.item(i));
markTree(auxNodeList.item(i));
}
}
else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment