Skip to content

Commit

Permalink
removed extraneous print from recycler
Browse files Browse the repository at this point in the history
  • Loading branch information
mattwparas committed Mar 10, 2024
1 parent 8020df6 commit 4721a77
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions crates/steel-core/src/values/closed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,12 +100,6 @@ impl GlobalSlotRecycler {
// Anything that is still remaining will require
// getting added to the free list that is left.
for index in self.slots.drain() {
println!(
"Freeing index: {} -> {:?}",
index,
symbol_map.values().get(index).map(|x| x.resolve())
);

if index < roots.len() {
symbol_map.free_list.free_list.push(index);
roots[index] = SteelVal::Void;
Expand Down

0 comments on commit 4721a77

Please sign in to comment.