Remove unneeded scopes

This commit is contained in:
Matthias Beyer 2016-05-14 19:51:24 +02:00
parent 0c89fafe20
commit e66d837642

View file

@ -56,18 +56,10 @@ impl IntoKeyValue<String, String> for String {
.unwrap(); .unwrap();
} }
R.captures(&self[..]) R.captures(&self[..])
.map(|caps| { .map(|caps| caps.name("VALUE").or(caps.name("QVALUE")).unwrap_or(""))
caps.name("VALUE")
.or(caps.name("QVALUE"))
.unwrap_or("")
})
}; };
key.and_then(|k| { key.and_then(|k| value.and_then(|v| Some(KeyValue::new(String::from(k), String::from(v)))))
value.and_then(|v| {
Some(KeyValue::new(String::from(k), String::from(v)))
})
})
} }
} }