Skip to content

Commit

Permalink
Fix hidden method unused arg warning
Browse files Browse the repository at this point in the history
type: fixed
  • Loading branch information
rrybarczyk authored and casey committed Apr 8, 2020
1 parent 1c22623 commit eb8efaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/platform.rs
Expand Up @@ -67,7 +67,7 @@ impl PlatformInterface for Platform {
Err(Error::OpenerMissing { tried: OPENERS })
}

fn hidden(path: &Path) -> Result<bool, Error> {
fn hidden(_path: &Path) -> Result<bool, Error> {
Ok(false)
}
}

0 comments on commit eb8efaf

Please sign in to comment.