Skip to content

Commit

Permalink
chore: remove debug print
Browse files Browse the repository at this point in the history
  • Loading branch information
obycode committed Dec 20, 2024
1 parent fdc7873 commit fef4ea1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion stacks-common/src/util/lru_cache.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,6 @@ impl<K: Eq + std::hash::Hash + Clone, V: Copy> LruCache<K, V> {
pub fn flush<E>(&mut self, mut f: impl FnMut(&K, V) -> Result<(), E>) -> Result<(), E> {
let mut index = self.head;
while index != self.capacity {
println!("checking {index}, dirty? {}", self.order[index].dirty);
let next = self.order[index].next;
if self.order[index].dirty {
let value = self.order[index].value;
Expand Down

0 comments on commit fef4ea1

Please sign in to comment.