1
Fork 0

Remove an unnecessary block.

This commit is contained in:
Nicholas Nethercote 2024-07-26 14:00:29 +10:00
parent 6ea2da5a28
commit 55d37ae711

View file

@ -114,7 +114,6 @@ impl ToAttrTokenStream for LazyAttrTokenStreamImpl {
replace_ranges.sort_by_key(|(range, _)| range.start); replace_ranges.sort_by_key(|(range, _)| range.start);
#[cfg(debug_assertions)] #[cfg(debug_assertions)]
{
for [(range, tokens), (next_range, next_tokens)] in replace_ranges.array_windows() { for [(range, tokens), (next_range, next_tokens)] in replace_ranges.array_windows() {
assert!( assert!(
range.end <= next_range.start || range.end >= next_range.end, range.end <= next_range.start || range.end >= next_range.end,
@ -125,7 +124,6 @@ impl ToAttrTokenStream for LazyAttrTokenStreamImpl {
next_tokens, next_tokens,
); );
} }
}
// Process the replace ranges, starting from the highest start // Process the replace ranges, starting from the highest start
// position and working our way back. If have tokens like: // position and working our way back. If have tokens like: