Remove debug print.

This commit is contained in:
Stephen Chung 2022-08-12 16:51:44 +08:00
parent 3cb66b7e23
commit 195c81c6ff

View File

@ -136,8 +136,6 @@ impl StringsInterner<'_> {
dict.insert(key, value.clone());
println!("Interning '{value}'");
// If the interner is over capacity, remove the longest entry
if self.strings.len() > self.max {
// Leave some buffer to grow when shrinking the cache.