Remove redundant null checks.

This commit is contained in:
Stephan Erb 2009-11-30 00:24:30 +01:00
parent 07f5bf223f
commit 8eb48d4533
1 changed files with 1 additions and 5 deletions

View File

@ -146,11 +146,7 @@ class PrivateChatControl(ChatControl):
""" """
Call this method to send the message Call this method to send the message
""" """
if not message:
return
message = helpers.remove_invalid_xml_chars(message) message = helpers.remove_invalid_xml_chars(message)
if not message: if not message:
return return
@ -158,7 +154,7 @@ class PrivateChatControl(ChatControl):
# the recipient did not go away # the recipient did not go away
contact = gajim.contacts.get_first_contact_from_jid(self.account, contact = gajim.contacts.get_first_contact_from_jid(self.account,
self.contact.jid) self.contact.jid)
if contact is None: if not contact:
# contact was from pm in MUC # contact was from pm in MUC
room, nick = gajim.get_room_and_nick_from_fjid(self.contact.jid) room, nick = gajim.get_room_and_nick_from_fjid(self.contact.jid)
gc_contact = gajim.contacts.get_gc_contact(self.account, room, nick) gc_contact = gajim.contacts.get_gc_contact(self.account, room, nick)