From fc672b96b09d1bf03c18c28af5fd24e60e0430c0 Mon Sep 17 00:00:00 2001 From: 1Kill2Steal <171241044+1Git2Clone@users.noreply.github.com> Date: Fri, 14 Feb 2025 19:37:18 +0200 Subject: [PATCH] Remove unnecessary `dbg!` usage --- src/distr/other.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/distr/other.rs b/src/distr/other.rs index 661df40afd..e5b7d14820 100644 --- a/src/distr/other.rs +++ b/src/distr/other.rs @@ -301,8 +301,6 @@ where #[cfg(test)] mod tests { - use std::dbg; - use super::*; use crate::RngCore; @@ -353,7 +351,6 @@ mod tests { for _ in 0..100 { let c: char = rng.sample(Alphabetic).into(); incorrect |= !c.is_ascii_alphabetic(); - dbg!(c); } assert!(!incorrect); }