Remove unnecessary to_string() call.

This commit is contained in:
Ms2ger 2015-01-24 19:25:25 +01:00
parent 4ad677e5b6
commit 7aa2735393

View file

@ -88,7 +88,7 @@ pub fn path_to_string<PI: Iterator<Item=PathElem>>(path: PI) -> String {
}
s.push_str(&e[]);
s
}).to_string()
})
}
#[derive(Copy, Show)]