From f170582c26c06e8ec8e263e5db168f42b2db650d Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Thu, 21 Jul 2022 13:51:31 +0200 Subject: [PATCH] Remove `println` statements from NSTextInputClient protocol functions --- crates/gpui/src/platform/mac/window.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/crates/gpui/src/platform/mac/window.rs b/crates/gpui/src/platform/mac/window.rs index f7fdc700d26c883472e8e1dd724b11f93a809932..cc23193830172d7c6d065a65b88890b111a6013f 100644 --- a/crates/gpui/src/platform/mac/window.rs +++ b/crates/gpui/src/platform/mac/window.rs @@ -1070,7 +1070,6 @@ extern "C" fn set_marked_text( selected_range: NSRange, replacement_range: NSRange, ) { - println!("set_marked_text"); unsafe { get_window_state(this) .borrow_mut() @@ -1106,7 +1105,6 @@ extern "C" fn attributed_substring_for_proposed_range( range: NSRange, _actual_range: *mut c_void, ) -> id { - println!("attributed_substring_for_proposed_range({:?})", range); with_input_handler(this, |input_handler| { let range = range.to_range()?; if range.is_empty() {