1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 08:27:12 -07:00

Remove log.

This commit is contained in:
Cedric Beust 2016-04-12 21:57:01 -08:00
parent 1a029e4a56
commit 98d4a6542c

View file

@ -129,9 +129,6 @@ class DynamicGraph<T> {
* Add a node to the graph.
*/
fun addNode(value: T) : T {
if (value.toString().contains("clean")) {
println("DONOTCOMMIT")
}
nodes.add(value)
nodesReady.add(value)
return value