| 82 | } |
| 83 | |
| 84 | void FileLoader::ResetTimeByInode(ino_t ino) { |
| 85 | if (impl_->ino != ino) { |
| 86 | impl_->ino = ino; |
| 87 | impl_->last_mod_time = 0; |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | bool FileLoader::LoadIfModified() { |
| 92 | bool is_modified = false; |
nothing calls this directly
no outgoing calls
no test coverage detected