summaryrefslogtreecommitdiff
path: root/bson
diff options
context:
space:
mode:
Diffstat (limited to 'bson')
-rw-r--r--bson/bsoninlines.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/bson/bsoninlines.h b/bson/bsoninlines.h
index 2e4cc754044..7f7736fe361 100644
--- a/bson/bsoninlines.h
+++ b/bson/bsoninlines.h
@@ -253,13 +253,6 @@ namespace mongo {
case Symbol:
case mongo::String: {
int x = valuestrsize();
- if ( t == mongo::String && x + fieldNameSize() + 5 != size() ){
- StringBuilder buf;
- buf << "Invalid string size. element size: " << size() << " fieldNameSize: " << fieldNameSize() << " valuestrsize(): " << valuestrsize();
- cout << "ELIOT : " << buf.str() << endl;
- msgasserted( 13292 , buf.str() );
- }
-
if ( x > 0 && valuestr()[x-1] == 0 )
return;
StringBuilder buf;