bitbake: bitbake: remove the function for reparse because it does nothing

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>
This commit is contained in:
Cristiana Voicu 2013-06-19 17:23:28 +03:00 committed by Richard Purdie
parent 3a74f25cf1
commit 7d02de844c
2 changed files with 0 additions and 11 deletions

View 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

View 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()