Revert unnecessary change for clippy.

This commit is contained in:
Sergio Benitez 2024-12-02 10:37:48 +01:00
parent ebfcbd2c75
commit b453bd589b
1 changed files with 2 additions and 6 deletions

View File

@ -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();