summaryrefslogtreecommitdiffstats
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-24 15:26:12 +0000
commit7ae3a24079384573bb988bcd1f065548c05b13fd (patch)
tree1270e53b1e99fce3b0770ef2236e8eb9de8fefb9
parent96b548a79d87120655da3ac5501b8ad4726cf1a4 (diff)
downloadpoky-7ae3a24079384573bb988bcd1f065548c05b13fd.tar.gz
bitbake: 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. (Bitbake rev: 5f37b6d2829fcac1f16602d9697f8bfbcb65ff62) Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--bitbake/lib/bb/cache.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/lib/bb/cache.py b/bitbake/lib/bb/cache.py
index ebb2422496..b8054e028b 100644
--- a/bitbake/lib/bb/cache.py
+++ b/bitbake/lib/bb/cache.py
@@ -814,10 +814,6 @@ class MulticonfigCache(Mapping):
814 for k in self.__caches: 814 for k in self.__caches:
815 yield k 815 yield k
816 816
817 def keys(self):
818 return self.__caches[key]
819
820
821def init(cooker): 817def init(cooker):
822 """ 818 """
823 The Objective: Cache the minimum amount of data possible yet get to the 819 The Objective: Cache the minimum amount of data possible yet get to the