Remove hashmap collision warning

It was only used to check hashmap collision rate in the wild,
but it no longer has a purpose and produces spurious messages
This commit is contained in:
ISSOtm
2021-03-23 21:29:23 +01:00
parent aa99ed056c
commit e3fde986ad

View File

@@ -194,11 +194,7 @@ void sect_AddSection(struct Section *section)
section->name, typeNames[section->type]); section->name, typeNames[section->type]);
} else { } else {
/* If not, add it */ /* If not, add it */
bool collided = hash_AddElement(sections, section->name, hash_AddElement(sections, section->name, section);
section);
if (beVerbose && collided)
warnx("Section hashmap collision occurred!");
} }
} }