no ticket, removed misleading warning message about supposedly non-existent session

--HG--
branch : product-engine
master
Igor Borovkov 2009-11-12 16:46:44 +02:00
parent 047eb37967
commit 4d616fdfae
1 changed files with 1 additions and 5 deletions

View File

@ -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())