diff --git a/src/context/windows.rs b/src/context/windows.rs index 16aeb9ae..70e8ff1f 100644 --- a/src/context/windows.rs +++ b/src/context/windows.rs @@ -205,7 +205,6 @@ unsafe extern "system" fn window_proc( let poll_callback = (*create_params).lpCreateParams as *mut PollCallback; assert!(!poll_callback.is_null()); - dbg!(poll_callback); // Store this for later use SetWindowLongPtrA(handle, GWLP_USERDATA, poll_callback as isize); @@ -219,7 +218,6 @@ unsafe extern "system" fn window_proc( return LRESULT(0); } - dbg!(callback); // This callback function just keeps popping off and handling tasks from the tasks queue // until there's nothing left (*callback)(); diff --git a/src/param/smoothing.rs b/src/param/smoothing.rs index c885e7fd..5a6e29be 100644 --- a/src/param/smoothing.rs +++ b/src/param/smoothing.rs @@ -217,7 +217,7 @@ mod tests { // the expected time. smoother.set_target(100.0, 20.0); for _ in 0..(10 - 2) { - dbg!(smoother.next()); + smoother.next(); } assert_ne!(smoother.next(), 20.0); assert_eq!(smoother.next(), 20.0); @@ -232,7 +232,7 @@ mod tests { // Integers are rounded, but with these values we can still test this smoother.set_target(100.0, 20); for _ in 0..(10 - 2) { - dbg!(smoother.next()); + smoother.next(); } assert_ne!(smoother.next(), 20); assert_eq!(smoother.next(), 20); @@ -248,7 +248,7 @@ mod tests { // the expected time. smoother.set_target(100.0, 20.0); for _ in 0..(10 - 2) { - dbg!(smoother.next()); + smoother.next(); } assert_ne!(smoother.next(), 20.0); assert_eq!(smoother.next(), 20.0); @@ -263,7 +263,7 @@ mod tests { // Integers are rounded, but with these values we can still test this smoother.set_target(100.0, 20); for _ in 0..(10 - 2) { - dbg!(smoother.next()); + smoother.next(); } assert_ne!(smoother.next(), 20); assert_eq!(smoother.next(), 20);