mirror of https://github.com/rwf2/Rocket.git
fixed clippy warnings
This commit is contained in:
parent
4eb6cdf8fb
commit
9fa19570a1
|
@ -266,8 +266,12 @@ fn internal_uri_macro_decl(route: &Route) -> TokenStream {
|
|||
route.attr.method.0.hash(&mut hasher);
|
||||
route.attr.uri.path().hash(&mut hasher);
|
||||
route.attr.uri.query().hash(&mut hasher);
|
||||
route.attr.data.as_ref().map(|d| d.value.hash(&mut hasher));
|
||||
route.attr.format.as_ref().map(|f| f.0.hash(&mut hasher));
|
||||
if let Some(data) = &route.attr.data {
|
||||
data.value.hash(&mut hasher);
|
||||
}
|
||||
if let Some(format) = &route.attr.format {
|
||||
format.0.hash(&mut hasher);
|
||||
}
|
||||
});
|
||||
|
||||
let route_uri = route.attr.uri.to_string();
|
||||
|
|
Loading…
Reference in New Issue