Unnecessary if.

This commit is contained in:
André Cruz
2013-07-29 09:25:12 +01:00
parent ee76fe584e
commit 83f00d720e

View File

@@ -401,12 +401,6 @@ Project.prototype.walkTree = function (node, fn, onlyOnce) {
continue;
}
// Ignore linked dependencies because it's too complex to parse them
// Note that this might change in the future: #673
if (node.linked) {
continue;
}
// Add dependencies to the queue
dependencies = mout.object.values(node.dependencies);