Remove unnecessary to_string calls

This commit removes superfluous to_string calls from various places
This commit is contained in:
Piotr Jawniak 2014-06-26 08:15:14 +02:00
parent 99519cc8e6
commit f8e06c4965
26 changed files with 62 additions and 106 deletions

View file

@ -629,7 +629,7 @@ impl Repr for ty::ParamBounds {
for t in self.trait_bounds.iter() {
res.push(t.repr(tcx));
}
res.connect("+").to_string()
res.connect("+")
}
}