| 106 | } |
| 107 | |
| 108 | void InotifyService::removeDirectory(int wd) { |
| 109 | mTree->removeDirectory(wd); |
| 110 | } |
| 111 | |
| 112 | void InotifyService::renameDirectory(int fromWd, std::string fromName, int toWd, std::string toName) { |
| 113 | if (!mTree->nodeExists(fromWd) || !mTree->nodeExists(toWd)) { |
nothing calls this directly
no outgoing calls
no test coverage detected