Remove debugging code.

This commit is contained in:
Stephen Anthony 2022-08-17 18:30:27 -02:30
parent d1d017f349
commit 0a4a9e982c
1 changed files with 0 additions and 3 deletions

View File

@ -103,8 +103,6 @@ bool FSNodePOSIX::hasParent() const
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
bool FSNodePOSIX::getChildren(AbstractFSList& myList, ListMode mode) const
{
uInt64 T = TimerManager::getTicks();
if (!_isDirectory)
return false;
@ -171,7 +169,6 @@ uInt64 T = TimerManager::getTicks();
}
closedir(dirp);
cerr << (TimerManager::getTicks() - T) << endl;
return true;
}