From e233073305f85516412111f0b458541240c820c5 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Tue, 5 Jan 2016 16:17:05 +0100 Subject: [PATCH] Remove unneeded Keyword "mut" --- src/storage/file/id.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/storage/file/id.rs b/src/storage/file/id.rs index 0096fad3..f89eb551 100644 --- a/src/storage/file/id.rs +++ b/src/storage/file/id.rs @@ -68,9 +68,9 @@ impl FileID { } debug!("Matches: {}", capts.len()); - let modname = capts.at(1).unwrap(); - let hashname = capts.at(2).unwrap(); - let mut hash = capts.at(3).unwrap(); + let modname = capts.at(1).unwrap(); + let hashname = capts.at(2).unwrap(); + let hash = capts.at(3).unwrap(); debug!("Destructure FilePath to ID:"); debug!(" FilePath: {:?}", s);