Remove unnecessary line

This commit is contained in:
boraarslan
2022-06-03 15:15:17 +03:00
parent 26a0fd1fbe
commit 38c2ea6a5d

View File

@@ -78,8 +78,7 @@ impl<'de> Deserialize<'de> for Value {
Ok(Value::F64(v))
}
fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E>
where E: serde::de::Error {
fn visit_bool<E>(self, v: bool) -> Result<Self::Value, E> {
Ok(Value::Bool(v))
}