Skip to content

Commit 5e17f38

Browse files
committed
Update the fs_utf8 trait too.
1 parent 27fe9c2 commit 5e17f38

File tree

1 file changed

+0
-19
lines changed

1 file changed

+0
-19
lines changed

cap-std/src/fs_utf8/file.rs

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -551,25 +551,6 @@ impl crate::fs::FileExt for File {
551551
self.cap_std.create_directory(path)
552552
}
553553

554-
#[inline]
555-
fn read_link<P: AsRef<Path>>(
556-
&self,
557-
path: P,
558-
) -> std::result::Result<std::path::PathBuf, io::Error> {
559-
let path = path.as_ref();
560-
self.cap_std.read_link(path)
561-
}
562-
563-
#[inline]
564-
fn metadata_at<P: AsRef<Path>>(
565-
&self,
566-
lookup_flags: u32,
567-
path: P,
568-
) -> std::result::Result<std::fs::Metadata, io::Error> {
569-
let path = path.as_ref();
570-
self.cap_std.metadata_at(lookup_flags, path)
571-
}
572-
573554
#[inline]
574555
fn remove_file<P: AsRef<Path>>(&self, path: P) -> std::result::Result<(), io::Error> {
575556
let path = path.as_ref();

0 commit comments

Comments
 (0)