| 199 | void UBFileSystemUtils::deleteAllTempDirCreatedDuringSession() |
| 200 | { |
| 201 | foreach (QString dirPath, sTempDirToCleanUp) |
| 202 | { |
| 203 | qWarning() << "will delete" << dirPath; |
| 204 | |
| 205 | deleteDir(dirPath); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 |
nothing calls this directly
no test coverage detected