Skip to content

Commit 03eed30

Browse files
committed
Remove ancient debugging print from tokenizer
1 parent 0da3647 commit 03eed30

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/tokenizer.rs

-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ fn check_exp(value: &str) -> bool {
109109
fn check_float(value: &str, exponent: Option<usize>, real: Option<usize>)
110110
-> bool
111111
{
112-
println!("Value {:?} {:?} {:?}", value, exponent, real);
113112
match (exponent, real) {
114113
(Some(e), Some(r)) if e < r => false,
115114
(Some(e), Some(r))

0 commit comments

Comments
 (0)