From 1f896d2d58d9c150d3981f253e81898afa999c2c Mon Sep 17 00:00:00 2001
From: Loren Shih <seraph@lindenlab.com>
Date: Fri, 22 Jan 2010 14:54:28 -0500
Subject: [PATCH] EXT-4654 : FolderDictionary assert on importFile

Took out spurious assert; this should be a llwarns instead, and we should be warning when an illegal folder entry is created.
---
 indra/llcommon/lldictionary.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/lldictionary.h b/indra/llcommon/lldictionary.h
index 95178b41e77..8c86a8560e0 100644
--- a/indra/llcommon/lldictionary.h
+++ b/indra/llcommon/lldictionary.h
@@ -76,7 +76,7 @@ class LLDictionary : public std::map<Index, Entry *>
 				return dictionary_iter->first;
 			}
 		}
-		llassert(false);
+		llwarns << "Lookup on " << name << " failed" << llendl;
 		return Index(-1);
 	}
 
-- 
GitLab