From f986513d0dc0f5ddc88089229970afcbb3f4453b Mon Sep 17 00:00:00 2001 From: Thorsten Ball Date: Mon, 16 Sep 2024 09:00:20 -0400 Subject: [PATCH] gpui: Remove debug print statement (#17878) Release Notes: - N/A --- crates/gpui/src/app.rs | 6 ------ 1 file changed, 6 deletions(-) diff --git a/crates/gpui/src/app.rs b/crates/gpui/src/app.rs index ac7d5eb47b..564b893489 100644 --- a/crates/gpui/src/app.rs +++ b/crates/gpui/src/app.rs @@ -1504,9 +1504,3 @@ pub struct KeystrokeEvent { /// The action that was resolved for the keystroke, if any pub action: Option>, } - -impl Drop for AppContext { - fn drop(&mut self) { - println!("Dropping the App Context"); - } -}