summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildstream/_project.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/buildstream/_project.py b/buildstream/_project.py
index 12074ab3a..5344e954e 100644
--- a/buildstream/_project.py
+++ b/buildstream/_project.py
@@ -458,11 +458,3 @@ class Project():
# paths are passed in relative to the project, but must be absolute
origin_dict['path'] = os.path.join(self.directory, origin_dict['path'])
destination.append(origin_dict)
-
- def _extract_plugin_paths(self, node, name):
- if not node:
- return
- path_list = _yaml.node_get(node, list, name, default_value=[])
- for i in range(len(path_list)):
- path = _yaml.node_get(node, str, name, indices=[i])
- yield path