implement clippy suggestion to remove needless return

This commit is contained in:
Igor Makarov 2019-11-10 11:13:27 +02:00
parent e1501f17ab
commit 37ec84d09a

View file

@ -52,7 +52,7 @@ pub fn cargo_test(attr: TokenStream, item: TokenStream) -> TokenStream {
))));
}
return ret;
ret
}
fn contains_ident(t: &TokenStream, ident: &str) -> bool {