Fallout from deprecation

This commit handles the fallout from deprecating `_with` and `_equiv` methods.
This commit is contained in:
Aaron Turon
2014-11-12 15:51:51 -08:00
parent 80a2867ea7
commit 7213de1c49
21 changed files with 56 additions and 49 deletions

View File

@@ -726,7 +726,7 @@ impl<'t> Captures<'t> {
match self.named {
None => "",
Some(ref h) => {
match h.find_equiv(name) {
match h.get(name) {
None => "",
Some(i) => self.at(*i),
}