Remove stray dbg! calls

Max Brunsfeld created

Change summary

crates/project/src/worktree.rs            | 2 +-
crates/project_panel/src/project_panel.rs | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)

Detailed changes

crates/project/src/worktree.rs 🔗

@@ -711,7 +711,7 @@ impl Worktree {
         let mut primary_diagnostic_group_ids = HashMap::default();
         let mut sources_by_group_id = HashMap::default();
         let mut supporting_diagnostic_severities = HashMap::default();
-        for diagnostic in dbg!(&params.diagnostics) {
+        for diagnostic in &params.diagnostics {
             let source = diagnostic.source.as_ref();
             let code = diagnostic.code.as_ref().map(|code| match code {
                 lsp::NumberOrString::Number(code) => code.to_string(),

crates/project_panel/src/project_panel.rs 🔗

@@ -524,7 +524,7 @@ impl ProjectPanel {
             if is_dir {
                 cx.dispatch_action(ToggleExpanded(entry))
             } else {
-                cx.dispatch_action(Open(dbg!(entry)))
+                cx.dispatch_action(Open(entry))
             }
         })
         .with_cursor_style(CursorStyle::PointingHand)