1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00
This commit is contained in:
Cedric Beust 2016-04-12 23:44:19 -07:00
parent 63da02d5f5
commit 07539ebc8f

View file

@ -142,7 +142,7 @@ class DynamicGraph<T> {
* (they will be added by this method). Makes "to" depend on "from".
*/
fun addEdge(from: T, to: T) {
log(1, "@@@@@ NODE $to DEPENDS ON $from")
log(3, "Node $from depends on $to")
nodes.add(from)
nodes.add(to)
val fromNode = addNode(from)