Some simple Option / Result / iterator pattern simplifications (#3205)
This commit is contained in:
committed by
GitHub
parent
616dad43fd
commit
dcdbdd4bcc
+1
-4
@@ -105,10 +105,7 @@ impl QueryParams {
|
||||
}
|
||||
|
||||
pub fn get(&self, name: &str) -> Option<&String> {
|
||||
match self.params.get(name) {
|
||||
None => None,
|
||||
Some(v) => v.first(),
|
||||
}
|
||||
self.params.get(name).and_then(|v| v.first())
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user