mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-12-22 11:21:24 +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;
|
pub(crate) struct Identity;
|
||||||
|
|
||||||
impl Processor for Identity {
|
impl Processor for Identity {
|
||||||
fn path(&self, mut path: PathBuf) -> PathBuf {
|
fn path(&self, path: PathBuf) -> PathBuf {
|
||||||
path
|
path
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue