diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-28 14:32:53 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-30 09:54:35 +0100 |
commit | 3fb25ef24b6c2c337fb9b013aead197ca675305b (patch) | |
tree | 6e429b437c09363021d8446b7b2c1a02f8b112f0 /bitbake/lib | |
parent | e118ee3ad85cc6e7977bbd6f5a5bd6fe57aef04e (diff) | |
download | poky-3fb25ef24b6c2c337fb9b013aead197ca675305b.tar.gz |
bitbake: server/bitbake: Remove launchUI method
With the removal of the none server type, we can remove the launchUI
method and simplify the code slightly.
(Bitbake rev: 9bef2f2dd0bcaa59528ebcb3c1ce053b7dff1ec6)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/server/process.py | 4 | ||||
-rw-r--r-- | bitbake/lib/bb/server/xmlrpc.py | 5 |
2 files changed, 0 insertions, 9 deletions
diff --git a/bitbake/lib/bb/server/process.py b/bitbake/lib/bb/server/process.py index 5e2cade267..163dbbb997 100644 --- a/bitbake/lib/bb/server/process.py +++ b/bitbake/lib/bb/server/process.py | |||
@@ -264,7 +264,3 @@ class BitBakeServer(object): | |||
264 | self.connection = BitBakeServerConnection(self) | 264 | self.connection = BitBakeServerConnection(self) |
265 | signal.signal(signal.SIGTERM, lambda i, s: self.connection.terminate(force=True)) | 265 | signal.signal(signal.SIGTERM, lambda i, s: self.connection.terminate(force=True)) |
266 | return self.connection | 266 | return self.connection |
267 | |||
268 | def launchUI(self, uifunc, *args): | ||
269 | return uifunc(*args) | ||
270 | |||
diff --git a/bitbake/lib/bb/server/xmlrpc.py b/bitbake/lib/bb/server/xmlrpc.py index 9482923df4..ca3a401013 100644 --- a/bitbake/lib/bb/server/xmlrpc.py +++ b/bitbake/lib/bb/server/xmlrpc.py | |||
@@ -288,8 +288,3 @@ class BitBakeServer(object): | |||
288 | def establishConnection(self): | 288 | def establishConnection(self): |
289 | self.connection = BitBakeServerConnection(self.serverinfo) | 289 | self.connection = BitBakeServerConnection(self.serverinfo) |
290 | return self.connection | 290 | return self.connection |
291 | |||
292 | def launchUI(self, uifunc, *args): | ||
293 | return uifunc(*args) | ||
294 | |||
295 | |||