summaryrefslogtreecommitdiffstats
path: root/lib/bb/server/process.py
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-28 14:32:53 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-05-28 14:32:55 +0100
commit9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6 (patch)
tree3cc70a51c8528c0781bf3b60605e0db46526dd5c /lib/bb/server/process.py
parent9af03a89605e3db9bce3cea1e0f2d0b6cfaa6fe1 (diff)
downloadbitbake-9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6.tar.gz
server/bitbake: Remove launchUI method
With the removal of the none server type, we can remove the launchUI method and simplify the code slightly. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'lib/bb/server/process.py')
-rw-r--r--lib/bb/server/process.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/bb/server/process.py b/lib/bb/server/process.py
index 5e2cade26..163dbbb99 100644
--- a/lib/bb/server/process.py
+++ b/lib/bb/server/process.py
@@ -264,7 +264,3 @@ class BitBakeServer(object):
self.connection = BitBakeServerConnection(self)
signal.signal(signal.SIGTERM, lambda i, s: self.connection.terminate(force=True))
return self.connection
-
- def launchUI(self, uifunc, *args):
- return uifunc(*args)
-