From a18f94a8d33c45114240af6b3af58f8dcba608f4 Mon Sep 17 00:00:00 2001 From: Matthew LeVan Date: Fri, 14 Jun 2024 16:55:49 -0400 Subject: [PATCH] cargo: clippy --- rust/ares/src/jets/maps.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/rust/ares/src/jets/maps.rs b/rust/ares/src/jets/maps.rs index b0fbc30..e36fea4 100644 --- a/rust/ares/src/jets/maps.rs +++ b/rust/ares/src/jets/maps.rs @@ -9,7 +9,6 @@ crate::gdb!(); fn by_rep(context: &mut Context, tree: Noun, site: &Site, out: &mut Noun) { if unsafe { tree.raw_equals(D(0)) } { - return; } else { let node = slot(tree, 2).unwrap(); let left = slot(node, 6).unwrap(); @@ -31,4 +30,4 @@ pub fn jet_by_rep(context: &mut Context, subject: Noun) -> Result { let site = Site::new(context, &mut gate); by_rep(context, tree, &site, &mut pro); Ok(pro) -} \ No newline at end of file +}