Skip to content

Commit

Permalink
remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
Lurk committed Jun 13, 2023
1 parent c5e17c7 commit 0a46e26
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions src/toolkit/tokenizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,8 @@ impl<'input> Matcher<'input> {
&& END_SEQUENCE_SIZE > 0
&& !Self::are_sequences_equal(start_sequence, end_sequence)
{
println!(
"Balanced match start: {:?}, end: {:?}",
start_sequence, end_sequence
);
return self.get_balanced_match(start_sequence, end_sequence);
}
println!(
"Unbalanced match start: {:?}, end: {:?}",
start_sequence, end_sequence
);

self.get_unbalanced_match(start_sequence, end_sequence, match_end_of_input)
}

Expand Down

0 comments on commit 0a46e26

Please sign in to comment.