Skip to content

Commit

Permalink
clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasavila00 committed Dec 3, 2024
1 parent 4c48281 commit 601ceda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/beff-wasm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ struct LazyFileManager<'a> {
pub files: &'a mut HashMap<BffFileName, Rc<ParsedModule>>,
}

impl<'a> FileManager for LazyFileManager<'a> {
impl FileManager for LazyFileManager<'_> {
fn get_or_fetch_file(&mut self, file_name: &BffFileName) -> Option<Rc<ParsedModule>> {
if let Some(it) = self.files.get(file_name) {
return Some(it.clone());
Expand Down

0 comments on commit 601ceda

Please sign in to comment.