lib: remove the now useless class NaiveCollection
[nit.git] / lib / standard / collection / abstract_collection.nit
index 1298348..fcbd0f4 100644 (file)
@@ -134,12 +134,6 @@ interface Collection[E]
        end
 end
 
-# Naive implementation of collections method
-# You only have to define iterator!
-interface NaiveCollection[E]
-       super Collection[E]
-end
-
 # Instances of the Iterator class generates a series of elements, one at a time.
 # They are mainly used with collections.
 interface Iterator[E]