summaryrefslogtreecommitdiffstats
path: root/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:40:58 +0000
commit81bc1f20662c39ee8db1da45b1e8c7eb64abacf3 (patch)
treede46e65ca8331afc84d4c4c3dcc8f33a10246d12 /lib/bb/cache.py
parentcc4cfc2370297b8feb2dc39d4262e73adf06c09a (diff)
downloadopenembedded-core-contrib-81bc1f20662c39ee8db1da45b1e8c7eb64abacf3.tar.gz
bb/cache: drop some unused arguments
Drop unused 'd' argument from the cache save methods, simplifying the API. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/cache.py')
-rw-r--r--lib/bb/cache.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index 8485eb467a..55283b03d6 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -785,7 +785,7 @@ class MultiProcessCache(object):
data = [{}]
return data
- def save_extras(self, d):
+ def save_extras(self):
if not self.cachefile:
return
@@ -815,7 +815,7 @@ class MultiProcessCache(object):
if h not in dest[j]:
dest[j][h] = source[j][h]
- def save_merge(self, d):
+ def save_merge(self):
if not self.cachefile:
return