mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 13:10:54 +00:00
Remove print macros
This commit is contained in:
parent
ecf77a510a
commit
ebf1da1de8
1 changed files with 0 additions and 2 deletions
|
@ -57,7 +57,6 @@ pub fn init(cx: &mut MutableAppContext) {
|
|||
);
|
||||
cx.add_action(
|
||||
|workspace: &mut Workspace, _: &AddTabToDock, cx: &mut ViewContext<Workspace>| {
|
||||
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<Workspace>| {
|
||||
eprintln!("Removing tab from dock");
|
||||
if let Some(active_item) = workspace.active_item(cx) {
|
||||
let item_id = active_item.id();
|
||||
|
||||
|
|
Loading…
Reference in a new issue