Give recursive NodeRunnable a clear name

This commit is contained in:
Albert Brand
2016-11-24 12:26:34 +01:00
committed by GitHub
parent a4718c04b6
commit 65548a3076
@@ -25,12 +25,13 @@ public class RNSVGDefsShadowNode extends RNSVGDefinitionShadowNode {
return true;
}
});
traverseChildren(new NodeRunnable() {
NodeRunnable markUpdateSeenRecursive = new NodeRunnable() {
public boolean run(RNSVGVirtualNode node) {
node.markUpdateSeen();
node.traverseChildren(NodeRunnable.this);
node.traverseChildren(this);
return true;
}
});
};
traverseChildren(markUpdateSeenRecursive);
}
}