From dce09f9062b4c21ae61bc1c0b126d4d772bee0df Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Fri, 31 Oct 2025 23:48:52 -0600 Subject: [PATCH] Clipster --- tooling/xtask/src/tasks/workflows/release.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tooling/xtask/src/tasks/workflows/release.rs b/tooling/xtask/src/tasks/workflows/release.rs index d71b938eda8749a2d6b29b99f42ae1218e7818de..f25626e4351f5b69bbe0535ceb6927e09a929a3f 100644 --- a/tooling/xtask/src/tasks/workflows/release.rs +++ b/tooling/xtask/src/tasks/workflows/release.rs @@ -59,7 +59,7 @@ pub(crate) struct ReleaseBundleJobs { } impl ReleaseBundleJobs { - pub fn jobs<'a>(&'a self) -> Vec<&'a NamedJob> { + pub fn jobs(&self) -> Vec<&NamedJob> { vec![ &self.linux_aarch64, &self.linux_x86_64, @@ -70,7 +70,7 @@ impl ReleaseBundleJobs { ] } - pub fn into_jobs<'a>(self) -> Vec { + pub fn into_jobs(self) -> Vec { vec![ self.linux_aarch64, self.linux_x86_64,