Remove unneeded Keyword "mut"

This commit is contained in:
Matthias Beyer 2016-01-05 16:17:05 +01:00
parent cc2d0ad0d4
commit e233073305

View file

@ -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);