Format watcher module

This commit is contained in:
thePR0M3TH3AN
2025-05-25 15:17:27 -04:00
parent 1bf656f40b
commit 9423d40b80

View File

@@ -109,7 +109,8 @@ struct RemoveTracker {
impl RemoveTracker {
fn record(&mut self, path: &PathBuf) {
if let Ok(h) = Handle::from_path(path) {
self.map.insert(handle_key(&h), (path.clone(), Instant::now()));
self.map
.insert(handle_key(&h), (path.clone(), Instant::now()));
return;
}