Remove free count print

This commit is contained in:
Jeremy Soller
2017-05-12 21:04:52 -06:00
parent 32b0c06314
commit 4d2808a012

View File

@@ -27,7 +27,6 @@ impl<T: FrameAllocator> RecycleAllocator<T> {
for free in self.free.iter() {
count += free.1;
}
println!("Free count: {} in {} entries", count, self.free.len());
count
}