Remove unneeded Keyword "mut"
This commit is contained in:
parent
cc2d0ad0d4
commit
e233073305
1 changed files with 3 additions and 3 deletions
|
@ -68,9 +68,9 @@ impl FileID {
|
||||||
}
|
}
|
||||||
debug!("Matches: {}", capts.len());
|
debug!("Matches: {}", capts.len());
|
||||||
|
|
||||||
let modname = capts.at(1).unwrap();
|
let modname = capts.at(1).unwrap();
|
||||||
let hashname = capts.at(2).unwrap();
|
let hashname = capts.at(2).unwrap();
|
||||||
let mut hash = capts.at(3).unwrap();
|
let hash = capts.at(3).unwrap();
|
||||||
|
|
||||||
debug!("Destructure FilePath to ID:");
|
debug!("Destructure FilePath to ID:");
|
||||||
debug!(" FilePath: {:?}", s);
|
debug!(" FilePath: {:?}", s);
|
||||||
|
|
Loading…
Reference in a new issue