vcl/source/treelist/treelist.cxx |    1 -
 1 file changed, 1 deletion(-)

New commits:
commit ff65cb4d6b677c81b8c227a7e9c7ac972f9a2aeb
Author:     Noel Grandin <[email protected]>
AuthorDate: Thu Oct 23 11:02:53 2025 +0200
Commit:     Noel Grandin <[email protected]>
CommitDate: Thu Oct 23 18:23:22 2025 +0200

    reduce log noise in SvListView::IsExpanded
    
    this does not appear to be a real problem
    
    Change-Id: I5b537b67b2effcf6887d127483f7b353e49b78d3
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/192900
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <[email protected]>

diff --git a/vcl/source/treelist/treelist.cxx b/vcl/source/treelist/treelist.cxx
index 0cf3b0c53f40..3f6d50572f39 100644
--- a/vcl/source/treelist/treelist.cxx
+++ b/vcl/source/treelist/treelist.cxx
@@ -1301,7 +1301,6 @@ bool SvListView::IsExpanded( SvTreeListEntry* pEntry ) 
const
 {
     DBG_ASSERT(pEntry,"IsExpanded:No Entry");
     SvDataTable::const_iterator itr = m_pImpl->m_DataTable.find(pEntry);
-    DBG_ASSERT(itr != m_pImpl->m_DataTable.end(),"Entry not in Table");
     if (itr == m_pImpl->m_DataTable.end())
         return false;
     return itr->second->IsExpanded();

Reply via email to