workspace: Remove stray println! (#25189)

This PR removes a stray `println!` that was left over from #25185.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2025-02-19 15:24:00 -05:00 committed by GitHub
parent 40425093df
commit af6cdd87cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1804,7 +1804,6 @@ impl Workspace {
} }
pub fn close_window(&mut self, _: &CloseWindow, window: &mut Window, cx: &mut Context<Self>) { pub fn close_window(&mut self, _: &CloseWindow, window: &mut Window, cx: &mut Context<Self>) {
println!("workspace::close_window");
let prepare = self.prepare_to_close(CloseIntent::CloseWindow, window, cx); let prepare = self.prepare_to_close(CloseIntent::CloseWindow, window, cx);
cx.spawn_in(window, |_, mut cx| async move { cx.spawn_in(window, |_, mut cx| async move {
if prepare.await? { if prepare.await? {