clippy warnings

This commit is contained in:
Nikolay Kim 2020-07-29 23:11:37 +06:00
parent e05bb784d6
commit 7130ebc45e
2 changed files with 3 additions and 2 deletions

View file

@ -182,7 +182,7 @@ impl<'de, T: ResourcePath + 'de> Deserializer<'de> for PathDeserializer<'de, T>
where
V: Visitor<'de>,
{
if self.path.len() < 1 {
if self.path.is_empty() {
Err(de::value::Error::custom(
format!("wrong number of parameters: {} expected 1", self.path.len())
.as_str(),