mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-14 23:07:56 +02:00
GH #379: Remove unnecessary null pointer checks
This commit is contained in:
@@ -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;
|
||||
|
Reference in New Issue
Block a user