From af6cdd87cd7cc812fd56d9fad60ed7cf6e235560 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 19 Feb 2025 15:24:00 -0500 Subject: [PATCH] workspace: Remove stray `println!` (#25189) This PR removes a stray `println!` that was left over from #25185. Release Notes: - N/A --- 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 e14ce465f5..8098450ef4 100644 --- a/crates/workspace/src/workspace.rs +++ b/crates/workspace/src/workspace.rs @@ -1804,7 +1804,6 @@ impl Workspace { } pub fn close_window(&mut self, _: &CloseWindow, window: &mut Window, cx: &mut Context) { - println!("workspace::close_window"); let prepare = self.prepare_to_close(CloseIntent::CloseWindow, window, cx); cx.spawn_in(window, |_, mut cx| async move { if prepare.await? {