aboutsummaryrefslogtreecommitdiff
path: root/crates/vfs-notify
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-06-24 15:25:56 +0100
committerGitHub <[email protected]>2020-06-24 15:25:56 +0100
commit1a3b507a007d0373a83bde203d780b860ea55ce1 (patch)
treefd9b9d3295963b17f65d2a0960189adeae38c3a2 /crates/vfs-notify
parent97c4d06258bace7c9caf211d3a307fff05bdb58e (diff)
parente6c61d5072e600372ba4a38ad8893af37aaa77e6 (diff)
Merge #5034
5034: Cleanup project.json deserialization r=matklad a=matklad bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
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}