From 14c7782ce67887f9c41fecd01ff5168ada41cb28 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Sun, 5 May 2024 15:37:53 +0200 Subject: [PATCH] chore: Fix main CI after upgrade to Rust 1.78 (#11402) The CI was green at the time I've merged Rust 1.78, but a change that violated clippy::empty_doc has slipped through into main in the meantime. Mea culpa, I should've reran the CI. Release Notes: - N/A --- crates/assistant2/src/attachments.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/assistant2/src/attachments.rs b/crates/assistant2/src/attachments.rs index 790158ec49..cddf648163 100644 --- a/crates/assistant2/src/attachments.rs +++ b/crates/assistant2/src/attachments.rs @@ -117,7 +117,6 @@ impl UserAttachmentStore { } } -/// pub trait AttachmentTool { type Output: 'static; type View: Render;