x11: Remove logs for mac-os specific `set_edited` and `show_character_palette` (#32203)

Michael Sloan created

Release Notes:

- N/A

Change summary

crates/gpui/src/platform/linux/x11/window.rs | 8 --------
1 file changed, 8 deletions(-)

Detailed changes

crates/gpui/src/platform/linux/x11/window.rs 🔗

@@ -1322,10 +1322,6 @@ impl PlatformWindow for X11Window {
         Ok(())
     }
 
-    fn set_edited(&mut self, _edited: bool) {
-        log::info!("ignoring macOS specific set_edited");
-    }
-
     fn set_background_appearance(&self, background_appearance: WindowBackgroundAppearance) {
         let mut state = self.0.state.borrow_mut();
         state.background_appearance = background_appearance;
@@ -1333,10 +1329,6 @@ impl PlatformWindow for X11Window {
         state.renderer.update_transparency(transparent);
     }
 
-    fn show_character_palette(&self) {
-        log::info!("ignoring macOS specific show_character_palette");
-    }
-
     fn minimize(&self) {
         let state = self.0.state.borrow();
         const WINDOW_ICONIC_STATE: u32 = 3;