From: Alexandre Terrasa Date: Wed, 25 May 2016 23:43:18 +0000 (-0400) Subject: model/model_collect: importation_poset do not collect direct parents and children X-Git-Url: http://nitlanguage.org model/model_collect: importation_poset do not collect direct parents and children Signed-off-by: Alexandre Terrasa --- diff --git a/src/model/model_collect.nit b/src/model/model_collect.nit index 8585092..79970e5 100644 --- a/src/model/model_collect.nit +++ b/src/model/model_collect.nit @@ -112,8 +112,6 @@ redef class MModule var mmodules = new HashSet[MModule] mmodules.add self mmodules.add_all collect_ancestors(view) - mmodules.add_all collect_parents(view) - mmodules.add_all collect_children(view) mmodules.add_all collect_descendants(view) return view.mmodules_poset(mmodules) end