1
0
Fork 0
mirror of https://github.com/tokio-rs/axum.git synced 2025-04-26 13:56:22 +02:00

Remove accidentally committed dbg!s

This commit is contained in:
David Pedersen 2023-01-20 10:14:49 +01:00
parent 00d20eb007
commit 8c081c20ab

View file

@ -191,11 +191,8 @@ where
}
};
// dbg!(&params);
T::deserialize(de::PathDeserializer::new(params))
.map_err(|err| {
// dbg!(&err);
PathRejection::FailedToDeserializePathParams(FailedToDeserializePathParams(err))
})
.map(Path)