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"); - } -}