diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-09-13 16:59:30 +0300 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-09-13 16:59:30 +0300 |
commit | a21aa5509d1c1069a3562b7339f4d22ae927110d (patch) | |
tree | c2f0701387af04e4f029cfcb2dfcb2ca67ca3e2c /indra | |
parent | 18af6e397ef477287324b510471f640443ce0e33 (diff) |
STORM-1595 FIXED Removing a wrong debug assertion.
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llsidetray.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/newview/llsidetray.cpp b/indra/newview/llsidetray.cpp index a7c4057846..93ea952533 100644 --- a/indra/newview/llsidetray.cpp +++ b/indra/newview/llsidetray.cpp @@ -685,7 +685,6 @@ LLSideTrayTab* LLSideTray::getTab(const std::string& name) bool LLSideTray::isTabAttached(const std::string& name) { LLSideTrayTab* tab = getTab(name); - llassert(tab); if (!tab) return false; return std::find(mTabs.begin(), mTabs.end(), tab) != mTabs.end(); |