removed useless code

In destructors, zeroing attributes or clearing containers is utterly useless.
This commit is contained in:
Krishty
2021-09-11 21:51:20 +02:00
parent d34cd103f4
commit 4cf4e7454f
8 changed files with 0 additions and 11 deletions

View File

@@ -352,7 +352,6 @@ ZipArchiveIOSystem::Implement::Implement(IOSystem *pIOHandler, const char *pFile
ZipArchiveIOSystem::Implement::~Implement() {
if (m_ZipFileHandle != nullptr) {
unzClose(m_ZipFileHandle);
m_ZipFileHandle = nullptr;
}
}