mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-20 11:21:14 +00:00
Unneeded mut
This commit is contained in:
parent
ab8a24f25e
commit
35aca6a426
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue