| 3285 | } |
| 3286 | |
| 3287 | bool TmpFile::destroyFile() { |
| 3288 | bool deleted = deleteFile(filename); |
| 3289 | if (deleted) { |
| 3290 | TraceEvent("TmpFileDestory_Success").detail("Filename", filename); |
| 3291 | } else { |
| 3292 | TraceEvent("TmpFileDestory_Failed").detail("Filename", filename); |
| 3293 | } |
| 3294 | return deleted; |
| 3295 | } |
| 3296 | |
| 3297 | } // namespace platform |
| 3298 |
nothing calls this directly
no test coverage detected