Remove unneeded Keyword "mut"

This commit is contained in:
Matthias Beyer 2016-01-05 16:28:18 +01:00
parent 92d84482c6
commit a7603b1594
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ pub mod data {
* Does no spec verification.
*/
pub fn get_tags_from_header(header: &FHD) -> Vec<String> {
let mut tags : Vec<String> = vec![];
let tags : Vec<String> = vec![];
fn match_array(a: &Box<FHD>) -> Vec<String> {
let mut tags : Vec<String> = vec![];