From ebf1da1de89639260ef8d8a1d56c95eaed9cee15 Mon Sep 17 00:00:00 2001 From: Joseph Lyons Date: Tue, 21 Feb 2023 10:46:12 -0500 Subject: [PATCH] Remove print macros --- crates/workspace/src/dock.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/workspace/src/dock.rs b/crates/workspace/src/dock.rs index 057658c3b5..2bd8808281 100644 --- a/crates/workspace/src/dock.rs +++ b/crates/workspace/src/dock.rs @@ -57,7 +57,6 @@ pub fn init(cx: &mut MutableAppContext) { ); cx.add_action( |workspace: &mut Workspace, _: &AddTabToDock, cx: &mut ViewContext| { - eprintln!("Add tab to dock"); if let Some(active_item) = workspace.active_item(cx) { let item_id = active_item.id(); @@ -82,7 +81,6 @@ pub fn init(cx: &mut MutableAppContext) { ); cx.add_action( |workspace: &mut Workspace, _: &RemoveTabFromDock, cx: &mut ViewContext| { - eprintln!("Removing tab from dock"); if let Some(active_item) = workspace.active_item(cx) { let item_id = active_item.id();