[thorstenp] remove duplicate function

This commit is contained in:
Yann Leboulanger 2008-10-20 15:25:53 +00:00
parent c638f0c6ad
commit 010be12d8c
1 changed files with 0 additions and 12 deletions

View File

@ -482,18 +482,6 @@ class P2PConnection(IdleObject, PlugIn):
self.disconnect()
return True
def onreceive(self, recv_handler):
if not recv_handler:
if hasattr(self._owner, 'Dispatcher'):
self.on_receive = self._owner.Dispatcher.ProcessNonBlocking
else:
self.on_receive = None
return
_tmp = self.on_receive
# make sure this cb is not overriden by recursive calls
if not recv_handler(None) and _tmp == self.on_receive:
self.on_receive = recv_handler
def disconnect(self):
''' Closes the socket. '''
gajim.idlequeue.remove_timeout(self.fd)