GH #379: Remove unnecessary null pointer checks

This commit is contained in:
Alex Fabijanic
2014-04-29 22:26:30 -05:00
parent 9553d1d2ec
commit 6ec4986fb1
2 changed files with 2 additions and 6 deletions

View File

@@ -130,8 +130,7 @@ public:
return;
for (UInt32 i = 0; i < _maxCapacity; ++i)
{
if (_entries[i])
delete _entries[i];
delete _entries[i];
}
delete[] _entries;
_entries = 0;