bitbake: bitbake: remove the function for reparse because it does nothing
authorCristiana Voicu <cristiana.voicu@intel.com>
Wed, 19 Jun 2013 14:23:28 +0000 (17:23 +0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 20 Jun 2013 12:29:53 +0000 (13:29 +0100)
The command for reparse does nothing, so I have managed to remove it,
because it can be misleading. When a reparse is needed, it can be used
the parse function.

(Bitbake rev: 188eaba121789112ffeb1188f0984d23dfe8df4f)

Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
bitbake/lib/bb/command.py
bitbake/lib/bb/cooker.py

index 9dc38ec..43dd2f4 100644 (file)
@@ -378,14 +378,6 @@ class CommandsAsync:
         command.finishAsyncCommand()
     parseFiles.needcache = True
 
-    def reparseFiles(self, command, params):
-        """
-        Reparse .bb files
-        """
-        command.cooker.reparseFiles()
-        command.finishAsyncCommand()
-    reparseFiles.needcache = True
-
     def compareRevisions(self, command, params):
         """
         Parse the .bb files
index f375a6f..e304d81 100644 (file)
@@ -1192,9 +1192,6 @@ class BBCooker:
     def stop(self):
         self.state = state.stop
 
-    def reparseFiles(self):
-        return
-
     def initialize(self):
         self.state = state.initial
         self.initConfigurationData()