From 2300beb50333bb620013b058a7309e7f2042101d Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Thu, 9 Feb 2017 17:17:38 +0000 Subject: lib: Drop now unneeded update_data calls Now that the datastore works dynamically we don't need the update_data calls so we can just remove them. They're not actually done anything at all for a while. Signed-off-by: Richard Purdie --- lib/bb/data_smart.py | 1 - 1 file changed, 1 deletion(-) (limited to 'lib/bb/data_smart.py') diff --git a/lib/bb/data_smart.py b/lib/bb/data_smart.py index 0cd41683d..4d56081b6 100644 --- a/lib/bb/data_smart.py +++ b/lib/bb/data_smart.py @@ -976,7 +976,6 @@ class DataSmart(MutableMapping): data = {} d = self.createCopy() bb.data.expandKeys(d) - bb.data.update_data(d) config_whitelist = set((d.getVar("BB_HASHCONFIG_WHITELIST") or "").split()) keys = set(key for key in iter(d) if not key.startswith("__")) -- cgit 1.2.3-korg