chore: 移除废弃日志

This commit is contained in:
手瓜一十雪
2024-08-11 13:55:46 +08:00
parent d3897844ef
commit 6cf5d8cfdf
4 changed files with 8 additions and 8 deletions

View File

@@ -22,7 +22,7 @@ export class LimitedHashTable<K, V> {
this.keyToValue.set(key, value);
this.valueToKey.set(value, key);
while (this.keyToValue.size !== this.valueToKey.size) {
console.log('keyToValue.size !== valueToKey.size Error Atom');
//console.log('keyToValue.size !== valueToKey.size Error Atom');
this.keyToValue.clear();
this.valueToKey.clear();
}