aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs-notify
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-06-24 14:52:07 +0100
committerAleksey Kladov <[email protected]>2020-06-24 15:16:52 +0100
commite6c61d5072e600372ba4a38ad8893af37aaa77e6 (patch)
treefd9b9d3295963b17f65d2a0960189adeae38c3a2 /crates/vfs-notify
parenta07cad16ab6271809d30ecf723420b3e41ec42ef (diff)
Cleanup project.json deserialization
Diffstat (limited to 'crates/vfs-notify')
-rw-r--r--crates/vfs-notify/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/vfs-notify/src/lib.rs b/crates/vfs-notify/src/lib.rs
index baee6ddc8..5b4978285 100644
--- a/crates/vfs-notify/src/lib.rs
+++ b/crates/vfs-notify/src/lib.rs
@@ -45,7 +45,7 @@ impl loader::Handle for LoaderHandle {
45 fn invalidate(&mut self, path: AbsPathBuf) { 45 fn invalidate(&mut self, path: AbsPathBuf) {
46 self.sender.send(Message::Invalidate(path)).unwrap(); 46 self.sender.send(Message::Invalidate(path)).unwrap();
47 } 47 }
48 fn load_sync(&mut self, path: &AbsPathBuf) -> Option<Vec<u8>> { 48 fn load_sync(&mut self, path: &AbsPath) -> Option<Vec<u8>> {
49 read(path) 49 read(path)
50 } 50 }
51} 51}