aboutsummaryrefslogtreecommitdiffstats
path: root/src/util/skip.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/util/skip.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/util/skip.rs b/src/util/skip.rs
index d7b3896..10ba364 100644
--- a/src/util/skip.rs
+++ b/src/util/skip.rs
@@ -59,17 +59,11 @@ fn skip_opt_with_direction(
};
if events[index].token_type == *current && balance == 0 {
- println!(
- "close:it! {:?} {:?} {:?}",
- events[index].token_type, balance, index
- );
index = if forward { index + 1 } else { index - 1 };
- println!("index:break: {:?}", index);
break;
}
index = if forward { index + 1 } else { index - 1 };
- println!("index:loop: {:?}", index);
}
}