Update RNSVGDefsShadowNode.java

Make it more clear that we're traversing with the same `NodeRunnable`
This commit is contained in:
Albert Brand
2016-11-23 08:25:08 +01:00
committed by GitHub
parent d4cc619a9f
commit a4718c04b6
@@ -28,7 +28,7 @@ public class RNSVGDefsShadowNode extends RNSVGDefinitionShadowNode {
traverseChildren(new NodeRunnable() {
public boolean run(RNSVGVirtualNode node) {
node.markUpdateSeen();
node.traverseChildren(this);
node.traverseChildren(NodeRunnable.this);
return true;
}
});