| 505 | } |
| 506 | |
| 507 | Status HadoopFileSystem::DeleteRootDirContents() { |
| 508 | return impl_->DeleteDirContents("", /*missing_dir_ok=*/false); |
| 509 | } |
| 510 | |
| 511 | Status HadoopFileSystem::DeleteFile(const std::string& path) { |
| 512 | return impl_->DeleteFile(path); |
nothing calls this directly
no test coverage detected