summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-02-27 07:40:26 +0100
committerTristan Van Berkom <tristan.van.berkom@gmail.com>2018-02-27 11:43:18 +0000
commit618f7d692a19683c5e2409f56669d367d092d1bb (patch)
treeb878e9960511e5b535a3e184d4b2f3b45d27339b
parenta8a942b79b9b1373ef2750e37d1b20cd336b5d6d (diff)
downloadbuildstream-618f7d692a19683c5e2409f56669d367d092d1bb.tar.gz
element.py: Remove unused _get_strict_cache_key() method
Cache key handling is now contained within the Element class.
-rw-r--r--buildstream/element.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/buildstream/element.py b/buildstream/element.py
index 9bed99dc1..cd2299252 100644
--- a/buildstream/element.py
+++ b/buildstream/element.py
@@ -946,18 +946,6 @@ class Element(Plugin):
else:
return self.__weak_cache_key
- # _get_strict_cache_key():
- #
- # Returns the cache key for strict build mode
- #
- # Returns:
- # (str): A hex digest cache key for this Element, or None
- #
- # None is returned if information for the cache key is missing.
- #
- def _get_strict_cache_key(self):
- return self.__strict_cache_key
-
# _can_query_cache():
#
# Returns whether the cache key required for cache queries is available.