gpui: Remove debug print statement (#17878)

Thorsten Ball created

Release Notes:

- N/A

Change summary

crates/gpui/src/app.rs | 6 ------
1 file changed, 6 deletions(-)

Detailed changes

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<Box<dyn Action>>,
 }
-
-impl Drop for AppContext {
-    fn drop(&mut self) {
-        println!("Dropping the App Context");
-    }
-}