From: Cristiana Voicu Date: Wed, 19 Jun 2013 14:23:28 +0000 (+0300) Subject: bitbake: bitbake: remove the function for reparse because it does nothing X-Git-Tag: rev_ivi_2015_02_04~12071 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=cb7461d5d35ccf82a30ffa8ce7ba5d0a853615f7;p=scm%2Fbb%2Ftizen-distro.git 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 Signed-off-by: Richard Purdie --- diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 9dc38ec..43dd2f4 100644 --- a/bitbake/lib/bb/command.py +++ b/bitbake/lib/bb/command.py @@ -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 diff --git a/bitbake/lib/bb/cooker.py b/bitbake/lib/bb/cooker.py index f375a6f..e304d81 100644 --- a/bitbake/lib/bb/cooker.py +++ b/bitbake/lib/bb/cooker.py @@ -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()