summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--buildstream/plugins/elements/compose.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/buildstream/plugins/elements/compose.py b/buildstream/plugins/elements/compose.py
index 2a5979828..a206dd6d7 100644
--- a/buildstream/plugins/elements/compose.py
+++ b/buildstream/plugins/elements/compose.py
@@ -185,13 +185,6 @@ class ComposeElement(Element):
return os.path.join(os.sep, 'buildstream', 'install')
-# Like os.path.getmtime(), but doesnt explode on symlinks
-#
-def getmtime(path):
- stat = os.lstat(path)
- return stat.st_mtime
-
-
# Plugin entry point
def setup():
return ComposeElement