Remove unused code
This commit is contained in:
parent
eb9f340a03
commit
4631f50372
2 changed files with 1 additions and 13 deletions
|
@ -121,10 +121,6 @@ class CommonConnection:
|
||||||
|
|
||||||
# Remember where we are in the register agent process
|
# Remember where we are in the register agent process
|
||||||
self.agent_registrations = {}
|
self.agent_registrations = {}
|
||||||
# To know the groupchat jid associated with a stanza ID. Useful to
|
|
||||||
# request vcard or os info... to a real JID but act as if it comes from
|
|
||||||
# the fake jid
|
|
||||||
self.groupchat_jids = {} # {ID : groupchat_jid}
|
|
||||||
|
|
||||||
self.roster_supported = True
|
self.roster_supported = True
|
||||||
self.addressing_supported = False
|
self.addressing_supported = False
|
||||||
|
|
|
@ -56,9 +56,6 @@ class ConnectionHandlersBase:
|
||||||
# IDs of sent messages (https://trac.gajim.org/ticket/8222)
|
# IDs of sent messages (https://trac.gajim.org/ticket/8222)
|
||||||
self.sent_message_ids = []
|
self.sent_message_ids = []
|
||||||
|
|
||||||
# We decrypt GPG messages one after the other. Keep queue in mem
|
|
||||||
self.gpg_messages_to_decrypt = []
|
|
||||||
|
|
||||||
app.ged.register_event_handler('gc-message-received', ged.CORE,
|
app.ged.register_event_handler('gc-message-received', ged.CORE,
|
||||||
self._nec_gc_message_received)
|
self._nec_gc_message_received)
|
||||||
|
|
||||||
|
@ -256,15 +253,10 @@ class ConnectionHandlers(ConnectionSocks5Bytestream,
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
ConnectionSocks5Bytestream.__init__(self)
|
ConnectionSocks5Bytestream.__init__(self)
|
||||||
ConnectionIBBytestream.__init__(self)
|
ConnectionIBBytestream.__init__(self)
|
||||||
|
|
||||||
# Handle presences BEFORE caps
|
|
||||||
app.nec.register_incoming_event(PresenceReceivedEvent)
|
|
||||||
|
|
||||||
ConnectionJingle.__init__(self)
|
ConnectionJingle.__init__(self)
|
||||||
ConnectionHandlersBase.__init__(self)
|
ConnectionHandlersBase.__init__(self)
|
||||||
|
|
||||||
self.continue_connect_info = None
|
app.nec.register_incoming_event(PresenceReceivedEvent)
|
||||||
|
|
||||||
app.nec.register_incoming_event(StreamConflictReceivedEvent)
|
app.nec.register_incoming_event(StreamConflictReceivedEvent)
|
||||||
app.nec.register_incoming_event(NotificationEvent)
|
app.nec.register_incoming_event(NotificationEvent)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue