From e6bf6bc2f41c998d79228a3440a653021ef7b05f Mon Sep 17 00:00:00 2001
From: Nik Revenco <154856872+NikitaRevenco@users.noreply.github.com>
Date: Wed, 19 Mar 2025 00:05:41 +0000
Subject: [PATCH] chore: remove commented code

---
 helix-term/src/handlers/blame.rs | 2 --
 1 file changed, 2 deletions(-)

diff --git a/helix-term/src/handlers/blame.rs b/helix-term/src/handlers/blame.rs
index eef0201b..0f157a95 100644
--- a/helix-term/src/handlers/blame.rs
+++ b/helix-term/src/handlers/blame.rs
@@ -17,8 +17,6 @@ async fn compute_diff(
     line: u32,
     diff_providers: DiffProviderRegistry,
 ) -> anyhow::Result<String> {
-    // std::thread::sleep(Duration::from_secs(5));
-    // Ok("hhe".to_string())
     diff_providers
         .blame_line(&file, line)
         .map(|s| s.to_string())