summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoshua Watt <JPEWhacker@gmail.com>2020-11-10 09:02:03 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-11-20 10:50:22 +0000
commit5f37b6d2829fcac1f16602d9697f8bfbcb65ff62 (patch)
treeea5429f00187b6cf5e6decb58b452bcace36ca03 /lib
parente6d6c0b39393e9bdf378c1eba141f815e26b724b (diff)
downloadbitbake-5f37b6d2829fcac1f16602d9697f8bfbcb65ff62.tar.gz
bitbake: cache: Remove bad keys() function
Removes the keys() function from the MulticonfigCache. This appears to be a leftover from before the class inherited from collections.Mapping, is now unnecessary, and was outright incorrect. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/bb/cache.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/bb/cache.py b/lib/bb/cache.py
index ebb242249..b8054e028 100644
--- a/lib/bb/cache.py
+++ b/lib/bb/cache.py
@@ -814,10 +814,6 @@ class MulticonfigCache(Mapping):
for k in self.__caches:
yield k
- def keys(self):
- return self.__caches[key]
-
-
def init(cooker):
"""
The Objective: Cache the minimum amount of data possible yet get to the