Skip to content

Commit

Permalink
removed some not used code
Browse files Browse the repository at this point in the history
  • Loading branch information
radu committed May 19, 2024
1 parent 6fd955b commit 372d2fe
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions src/mount/macos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,6 @@ impl MountPoint for MountPointImpl {
}

async fn mount(mut self) -> FsResult<mount::MountHandle> {
let handle = mount_fuse(
self.mountpoint.clone(),
self.data_dir.clone(),
self.password_provider.take().unwrap(),
self.cipher,
self.allow_root,
self.allow_other,
self.direct_io,
self.suid_support,
)
.await?;
Ok(mount::MountHandle {
inner: MountHandleInnerImpl {},
})
Expand Down
11 changes: 0 additions & 11 deletions src/mount/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,6 @@ impl MountPoint for MountPointImpl {
}

async fn mount(mut self) -> FsResult<mount::MountHandle> {
let handle = mount_fuse(
self.mountpoint.clone(),
self.data_dir.clone(),
self.password_provider.take().unwrap(),
self.cipher,
self.allow_root,
self.allow_other,
self.direct_io,
self.suid_support,
)
.await?;
Ok(mount::MountHandle {
inner: MountHandleInnerImpl {},
})
Expand Down

0 comments on commit 372d2fe

Please sign in to comment.