summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJürg Billeter <j@bitron.ch>2018-02-27 07:40:26 +0100
committerJürg Billeter <j@bitron.ch>2018-02-27 10:59:20 +0100
commitaf28d4019d33c221a57759d1fb536f5bbacaa751 (patch)
treecce8915af455d7d78dca8030a1cc26dd2ead5c78
parent26b5a5976f95c6863eb769c37cd67d954d5bdfa9 (diff)
downloadbuildstream-juerg/cache-key-handling.tar.gz
element.py: Remove unused _get_strict_cache_key() methodjuerg/cache-key-handling
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.