Remove unneeded scopes

This commit is contained in:
Matthias Beyer 2016-05-14 19:51:24 +02:00
parent 0c89fafe20
commit e66d837642
1 changed files with 2 additions and 10 deletions

View File

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