From f10ed1dd50e453624a93a7e70e9a31a335175ca0 Mon Sep 17 00:00:00 2001 From: Bruce Mitchener Date: Fri, 24 Jan 2025 00:48:52 +0700 Subject: [PATCH] Fix `clippy::needless_lifetime` lint --- crates/moongraph/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/moongraph/src/lib.rs b/crates/moongraph/src/lib.rs index 6789221..259779e 100644 --- a/crates/moongraph/src/lib.rs +++ b/crates/moongraph/src/lib.rs @@ -682,7 +682,7 @@ pub struct BatchResult<'graph> { results: Vec>, } -impl<'graph> BatchResult<'graph> { +impl BatchResult<'_> { /// Save the results of the batch run to the graph. /// /// Optionally trim any nodes that report a [`GraphError::TrimNode`] result.