Skip to content

Commit 5c8042b

Browse files
committed
remove println
1 parent 960c6c1 commit 5c8042b

1 file changed

Lines changed: 0 additions & 6 deletions

File tree

  • winit-wayland/src/event_loop

winit-wayland/src/event_loop/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -484,17 +484,11 @@ impl EventLoop {
484484
})
485485
.is_some()
486486
{
487-
println!("Windows to close found: {windows_to_close:?}");
488487
for w in windows_to_close.into_iter().rev() {
489488
self.with_state(|state| {
490-
if state.windows.get_mut().get_mut(&w).is_none() {
491-
println!("Window id not found: {w:?}");
492-
}
493489
let parent =
494490
state.windows.get_mut().get_mut(&w).unwrap().lock().unwrap().parent();
495491

496-
println!("Closing window: {w:?}, Parent: {parent:?}");
497-
498492
parent
499493
.and_then(|p| state.windows.get_mut().get_mut(&p))
500494
.map(|p| p.lock().unwrap().remove_child(&w));

0 commit comments

Comments
 (0)