From 9cfc4a549a73a4585b4418b6abff7f960cfc5f02 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Sat, 28 Mar 2020 21:03:54 +0100 Subject: [PATCH] remove dbg --- asyncgit/src/sync/reset.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/asyncgit/src/sync/reset.rs b/asyncgit/src/sync/reset.rs index bc008ec7..b6b496e0 100644 --- a/asyncgit/src/sync/reset.rs +++ b/asyncgit/src/sync/reset.rs @@ -33,8 +33,6 @@ pub fn reset_workdir(repo_path: &str, path: &Path) -> bool { // Note: early out for removing untracked files, due to bug in checkout_head code: // see https://github.com/libgit2/libgit2/issues/5089 if let Ok(status) = repo.status_file(&path) { - dbg!(status); - let removed_file_wd = if status == Status::WT_NEW || (status == Status::WT_MODIFIED | Status::INDEX_NEW) {