gpui: Remove debug print statement (#17878)

Release Notes:

- N/A
This commit is contained in:
Thorsten Ball 2024-09-16 09:00:20 -04:00 committed by GitHub
parent 02dfe08ce8
commit f986513d0d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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