From 619a61529878f82daf7aed571bc4f6a10bd6dd9f Mon Sep 17 00:00:00 2001 From: Alan Du Date: Tue, 4 Jun 2019 02:28:22 -0400 Subject: Fix clippy::len_zero --- crates/ra_hir/src/path.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crates/ra_hir') diff --git a/crates/ra_hir/src/path.rs b/crates/ra_hir/src/path.rs index 1b129c752..67afd5027 100644 --- a/crates/ra_hir/src/path.rs +++ b/crates/ra_hir/src/path.rs @@ -116,7 +116,7 @@ impl Path { /// `true` if this path is just a standalone `self` pub fn is_self(&self) -> bool { - self.kind == PathKind::Self_ && self.segments.len() == 0 + self.kind == PathKind::Self_ && self.segments.is_empty() } /// If this path is a single identifier, like `foo`, return its name. @@ -140,7 +140,7 @@ impl GenericArgs { args.push(GenericArg::Type(type_ref)); } // lifetimes and assoc type args ignored for now - if args.len() > 0 { + if !args.is_empty() { Some(GenericArgs { args }) } else { None -- cgit v1.2.3