From 500da4a9994e311127e1e0bc25507bfd36f3fafa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=BCrg=20Billeter?= Date: Tue, 16 Jul 2019 16:09:56 +0200 Subject: _project.py: Remove unused _cache_key and get_cache_key() --- src/buildstream/_project.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/buildstream/_project.py b/src/buildstream/_project.py index a2ce5ae91..6a2c0f347 100644 --- a/src/buildstream/_project.py +++ b/src/buildstream/_project.py @@ -24,7 +24,6 @@ from collections import OrderedDict from pathlib import Path from pluginbase import PluginBase from . import utils -from . import _cachekey from . import _site from . import _yaml from ._artifactelement import ArtifactElement @@ -137,7 +136,6 @@ class Project(): self._default_mirror = default_mirror # The name of the preferred mirror. self._cli_options = cli_options - self._cache_key = None self._fatal_warnings = [] # A list of warnings which should trigger an error @@ -219,22 +217,6 @@ class Project(): def get_shell_config(self): return (self._shell_command, self._shell_environment, self._shell_host_files) - # 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 - # (currently nothing here) - self._cache_key = _cachekey.generate_key({}) - - return self._cache_key - # get_path_from_node() # # Fetches the project path from a dictionary node and validates it -- cgit v1.2.1 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