diff options
author | Igor Borovkov <iborovkov@productengine.com> | 2009-11-12 16:46:44 +0200 |
---|---|---|
committer | Igor Borovkov <iborovkov@productengine.com> | 2009-11-12 16:46:44 +0200 |
commit | 4d616fdfaebca4aedce84f5d694dcd495ac4222c (patch) | |
tree | b14f558db2a11a73e3033928d586ea60ecdeab8e /indra | |
parent | 047eb379673596bcc3167f399187e2c5f565dbcb (diff) |
no ticket, removed misleading warning message about supposedly non-existent session
--HG--
branch : product-engine
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llimfloater.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/indra/newview/llimfloater.cpp b/indra/newview/llimfloater.cpp index 5ea900e46d..059912d5d4 100644 --- a/indra/newview/llimfloater.cpp +++ b/indra/newview/llimfloater.cpp @@ -120,11 +120,7 @@ void LLIMFloater::newIMCallback(const LLSD& data){ LLUUID session_id = data["session_id"].asUUID(); LLIMFloater* floater = LLFloaterReg::findTypedInstance<LLIMFloater>("impanel", session_id); - if (floater == NULL) - { - llwarns << "new_im_callback for non-existent session_id " << session_id << llendl; - return; - } + if (floater == NULL) return; // update if visible, otherwise will be updated when opened if (floater->getVisible()) |