1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-06-27 16:36:03 +00:00

Irrlicht: Get rid of obsolete setDebugName (#15541)

Co-authored-by: sfan5 <sfan5@live.de>
This commit is contained in:
Lars Müller 2024-12-14 17:03:08 +01:00 committed by GitHub
parent 23e502fa0e
commit fef28aced9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
68 changed files with 20 additions and 322 deletions

View file

@ -24,11 +24,7 @@ namespace io
//! Constructor
CArchiveLoaderZIP::CArchiveLoaderZIP(io::IFileSystem *fs) :
FileSystem(fs)
{
#ifdef _DEBUG
setDebugName("CArchiveLoaderZIP");
#endif
}
{}
//! returns true if the file maybe is able to be loaded by this class
bool CArchiveLoaderZIP::isALoadableFileFormat(const io::path &filename) const
@ -107,10 +103,6 @@ bool CArchiveLoaderZIP::isALoadableFileFormat(io::IReadFile *file) const
CZipReader::CZipReader(IFileSystem *fs, IReadFile *file, bool ignoreCase, bool ignorePaths, bool isGZip) :
CFileList((file ? file->getFileName() : io::path("")), ignoreCase, ignorePaths), FileSystem(fs), File(file), IsGZip(isGZip)
{
#ifdef _DEBUG
setDebugName("CZipReader");
#endif
if (File) {
File->grab();