comment out toposort console debug
This commit is contained in:
parent
c87d85edd8
commit
895261e112
|
@ -117,7 +117,6 @@ export const topoSort = (
|
||||||
// Put it into the output list
|
// Put it into the output list
|
||||||
output.push(node)
|
output.push(node)
|
||||||
} else if (grays.has(node)) {
|
} else if (grays.has(node)) {
|
||||||
console.debug('Cyclic depenency in topoSort, ignoring')
|
|
||||||
output.push(node)
|
output.push(node)
|
||||||
} else if (blacks.has(node)) {
|
} else if (blacks.has(node)) {
|
||||||
// do nothing
|
// do nothing
|
||||||
|
|
Loading…
Reference in a new issue