Commit 9e1238ff authored by Tristan Gingold's avatar Tristan Gingold

content: remove unused action attribute.

parent 513b7183
...@@ -21,7 +21,6 @@ class ModuleContent(ModuleConfig): ...@@ -21,7 +21,6 @@ class ModuleContent(ModuleConfig):
self.modules = {'local': [], 'git': [], 'gitsm': [], 'svn': []} self.modules = {'local': [], 'git': [], 'gitsm': [], 'svn': []}
self.incl_makefiles = [] self.incl_makefiles = []
self.library = "work" self.library = "work"
self.action = None
self.pool = None self.pool = None
self.top_manifest = None self.top_manifest = None
self.manifest_dict = {} self.manifest_dict = {}
...@@ -45,9 +44,6 @@ class ModuleContent(ModuleConfig): ...@@ -45,9 +44,6 @@ class ModuleContent(ModuleConfig):
elif self.parent: elif self.parent:
self.library = self.parent.library self.library = self.parent.library
if "action" in self.manifest_dict:
self.action = self.manifest_dict["action"].lower()
def _create_file_list_from_paths(self, paths): def _create_file_list_from_paths(self, paths):
""" """
Build a Source File Set containing the files indicated by the Build a Source File Set containing the files indicated by the
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment