Merge: Recover `recover_with`
[nit.git] / lib / core / collection / hash_collection.nit
index c049332..6546b19 100644 (file)
@@ -273,7 +273,7 @@ class HashMap[K, V]
        # Build a list filled with the items of `coll`.
        init from(coll: Map[K, V]) do
                init
-               recover_with(coll)
+               add_all(coll)
        end
 
        redef var keys: RemovableCollection[K] = new HashMapKeys[K, V](self) is lazy