From aeeb6efa972f07ba2e7de85e7325060d1f816695 Mon Sep 17 00:00:00 2001 From: Richard Feldman Date: Tue, 31 Mar 2026 00:04:44 -0400 Subject: [PATCH] Remove cfg(test) gate from set_database_id --- crates/workspace/src/workspace.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/workspace/src/workspace.rs b/crates/workspace/src/workspace.rs index d4b1cebca6b6b71b9efd3394f639a5cb32384682..d5e8383c4bed4f6d762f0062dc72f5f09991b9b8 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -6290,7 +6290,6 @@ impl Workspace { self.database_id } - #[cfg(any(test, feature = "test-support"))] pub(crate) fn set_database_id(&mut self, id: WorkspaceId) { self.database_id = Some(id); }