summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorLoren Shih <seraph@lindenlab.com>2010-01-22 14:54:28 -0500
committerLoren Shih <seraph@lindenlab.com>2010-01-22 14:54:28 -0500
commit1f896d2d58d9c150d3981f253e81898afa999c2c (patch)
tree0c5d4afe065485f78ce400186050501dd27a46a0 /indra
parent0283837e56e69c8a6757d8366b82065e04ae966b (diff)
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.
Diffstat (limited to 'indra')
-rw-r--r--indra/llcommon/lldictionary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/lldictionary.h b/indra/llcommon/lldictionary.h
index 95178b41e7..8c86a8560e 100644
--- a/indra/llcommon/lldictionary.h
+++ b/indra/llcommon/lldictionary.h
@@ -76,7 +76,7 @@ public:
return dictionary_iter->first;
}
}
- llassert(false);
+ llwarns << "Lookup on " << name << " failed" << llendl;
return Index(-1);
}