From 8d6800bc8e0bede62d5779a5d6ea879dcf93c88f Mon Sep 17 00:00:00 2001
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Date: Mon, 10 Jan 2011 12:04:18 +0000
Subject: bitbake/utils.py: Drop unused function extend_deps()

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
 bitbake/lib/bb/utils.py | 11 -----------
 1 file changed, 11 deletions(-)

(limited to 'bitbake')

diff --git a/bitbake/lib/bb/utils.py b/bitbake/lib/bb/utils.py
index f04f4abe3..a4902931c 100644
--- a/bitbake/lib/bb/utils.py
+++ b/bitbake/lib/bb/utils.py
@@ -291,17 +291,6 @@ def join_deps(deps):
             result.append(dep)
     return ", ".join(result)
 
-def extend_deps(dest, src):
-    """
-    Extend the results from explode_dep_versions by appending all of the items
-    in the second list, avoiding duplicates.
-    """
-    for dep in src:
-        if dep not in dest:
-            dest[dep] = src[dep]
-        elif dest[dep] != src[dep]:
-            dest[dep] = src[dep]
-
 def _print_trace(body, line):
     """
     Print the Environment of a Text Body
-- 
cgit v1.2.3