Unneeded mut

This commit is contained in:
asonix 2020-06-07 13:03:36 -05:00
parent ab8a24f25e
commit 35aca6a426

View file

@ -12,7 +12,7 @@ pub(crate) trait Processor {
pub(crate) struct Identity;
impl Processor for Identity {
fn path(&self, mut path: PathBuf) -> PathBuf {
fn path(&self, path: PathBuf) -> PathBuf {
path
}