From 411a62bd2d786cd3910f9bbbbd96b4b254816f6a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Tue, 16 Jul 2019 16:10:46 +0200 Subject: _context.py: Remove unused _cache_key and get_cache_key() --- src/buildstream/_context.py | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/src/buildstream/_context.py b/src/buildstream/_context.py index 1e45d776d..bb9825f44 100644 --- a/src/buildstream/_context.py +++ b/src/buildstream/_context.py @@ -20,7 +20,6 @@ import os import shutil from . import utils -from . import _cachekey from . import _site from . import _yaml from ._exceptions import LoadError, LoadErrorReason @@ -154,7 +153,6 @@ class Context(): self.messenger = Messenger() # Private variables - self._cache_key = None self._artifactcache = None self._sourcecache = None self._projects = [] @@ -455,21 +453,6 @@ class Context(): # value which we cache here too. return self._strict_build_plan - # get_cache_key(): - # - # Returns the cache key, calculating it if necessary - # - # Returns: - # (str): A hex digest cache key for the Context - # - def get_cache_key(self): - if self._cache_key is None: - - # Anything that alters the build goes into the unique key - self._cache_key = _cachekey.generate_key({}) - - return self._cache_key - # set_artifact_directories_optional() # # This indicates that the current context (command or configuration) -- cgit v1.2.1