Commit 39357b95 authored by Vincent Pelletier's avatar Vincent Pelletier

Remove dead code (_connectionLost raises).


git-svn-id: https://svn.erp5.org/repos/neo/branches/prototype3@1040 71dcc9de-d417-0410-9af5-da40c76e7ee4
parent 037af03a
......@@ -136,19 +136,15 @@ class MasterEventHandler(EventHandler):
def connectionFailed(self, conn):
self._connectionLost(conn)
EventHandler.connectionFailed(self, conn)
def timeoutExpired(self, conn):
self._connectionLost(conn)
EventHandler.timeoutExpired(self, conn)
def connectionClosed(self, conn):
self._connectionLost(conn)
EventHandler.connectionClosed(self, conn)
def peerBroken(self, conn):
self._connectionLost(conn)
EventHandler.peerBroken(self, conn)
def dispatch(self, conn, packet):
if not packet.isResponse():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment