mirror of
https://github.com/rwf2/Rocket.git
synced 2025-02-22 16:42:07 +00:00
Revert unnecessary change for clippy.
This commit is contained in:
parent
ebfcbd2c75
commit
b453bd589b
@ -266,12 +266,8 @@ fn internal_uri_macro_decl(route: &Route) -> TokenStream {
|
||||
route.attr.method.as_ref().map(|m| m.0.hash(&mut hasher));
|
||||
route.attr.uri.path().hash(&mut hasher);
|
||||
route.attr.uri.query().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);
|
||||
}
|
||||
route.attr.data.as_ref().map(|d| d.value.hash(&mut hasher));
|
||||
route.attr.format.as_ref().map(|f| f.0.hash(&mut hasher));
|
||||
});
|
||||
|
||||
let route_uri = route.attr.uri.to_string();
|
||||
|
Loading…
Reference in New Issue
Block a user