Skip to content

Commit

Permalink
Fix clippy warning (#62)
Browse files Browse the repository at this point in the history
  • Loading branch information
Turbo87 authored Jan 2, 2025
1 parent 6699c63 commit fdb850c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/afs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ impl<'a> Filesystem<'a> {
}
}

impl<'a> AbstractFilesystem for Filesystem<'a> {
impl AbstractFilesystem for Filesystem<'_> {
fn file_names_in<T: AsRef<Path>>(&self, rel_path: T) -> io::Result<BTreeSet<Box<str>>> {
Ok(read_dir(self.path.join(rel_path))?
.filter_map(|entry| {
Expand Down

0 comments on commit fdb850c

Please sign in to comment.