Skip to content

Commit

Permalink
Remove extra break
Browse files Browse the repository at this point in the history
  • Loading branch information
hansott committed Jan 12, 2025
1 parent dfcd131 commit 955f8bb
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions src/tokenizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1565,7 +1565,6 @@ impl<'a> Tokenizer<'a> {
if temp.ends_with(&end_delimiter) {
if let Some(temp) = temp.strip_suffix(&end_delimiter) {
s.push_str(temp);
break;
}
break;
}
Expand All @@ -1574,7 +1573,6 @@ impl<'a> Tokenizer<'a> {
if temp.ends_with(&end_delimiter) {
if let Some(temp) = temp.strip_suffix(&end_delimiter) {
s.push_str(temp);
break;
}
break;
}
Expand Down

0 comments on commit 955f8bb

Please sign in to comment.