summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/cache.py
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2016-01-26 15:34:27 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-02-18 07:41:15 +0000
commit97617fd6755ffa25c058215ffb060cbb86240b44 (patch)
tree77d7cc37dcad0a9586e94da9c1851e4b55cca67f /bitbake/lib/bb/cache.py
parent5a87d8c477ea829012785f2b284307c56f42787c (diff)
downloadpoky-97617fd6755ffa25c058215ffb060cbb86240b44.tar.gz
bitbake: bb/cache: drop some unused arguments
Drop unused 'd' argument from the cache save methods, simplifying the API. (Bitbake rev: 81bc1f20662c39ee8db1da45b1e8c7eb64abacf3) Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/cache.py')
-rw-r--r--bitbake/lib/bb/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index 8485eb467a..55283b03d6 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -785,7 +785,7 @@ class MultiProcessCache(object):
785 data = [{}] 785 data = [{}]
786 return data 786 return data
787 787
788 def save_extras(self, d): 788 def save_extras(self):
789 if not self.cachefile: 789 if not self.cachefile:
790 return 790 return
791 791
@@ -815,7 +815,7 @@ class MultiProcessCache(object):
815 if h not in dest[j]: 815 if h not in dest[j]:
816 dest[j][h] = source[j][h] 816 dest[j][h] = source[j][h]
817 817
818 def save_merge(self, d): 818 def save_merge(self):
819 if not self.cachefile: 819 if not self.cachefile:
820 return 820 return
821 821