From 7ae3a24079384573bb988bcd1f065548c05b13fd Mon Sep 17 00:00:00 2001 From: Joshua Watt Date: Tue, 10 Nov 2020 09:02:03 -0600 Subject: 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 Signed-off-by: Richard Purdie --- bitbake/lib/bb/cache.py | 4 ---- 1 file changed, 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): 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 -- cgit v1.2.3-54-g00ecf