From 7d02de844c00d55189673a6eed9197bcbc5b2720 Mon Sep 17 00:00:00 2001 From: Cristiana Voicu Date: Wed, 19 Jun 2013 17:23:28 +0300 Subject: 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 --- bitbake/lib/bb/command.py | 8 -------- bitbake/lib/bb/cooker.py | 3 --- 2 files changed, 11 deletions(-) (limited to 'bitbake') diff --git a/bitbake/lib/bb/command.py b/bitbake/lib/bb/command.py index 9dc38ec938..43dd2f4644 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 f375a6f581..e304d81c5a 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() -- cgit v1.2.3-54-g00ecf