nitcc: remove the use of NaiveCollection
[nit.git] / lib / nitcc_runtime.nit
index bf778cf..b5fb0fb 100644 (file)
@@ -366,7 +366,7 @@ abstract class Node
 end
 
 private class DephCollection
-       super NaiveCollection[Node]
+       super Collection[Node]
        var node: Node
        redef fun iterator do return new DephIterator([node].iterator)
 end