Remove leftover println statements (#18389)

Remove some leftover println statements from #17644

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2024-09-26 12:52:56 +02:00 committed by GitHub
parent 3f415f3587
commit 31902a1b73
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -213,8 +213,6 @@ fn find_number(
begin = Some(offset);
}
num.push(ch);
println!("pushing {}", ch);
println!();
} else if begin.is_some() {
end = Some(offset);
break;