This commit is contained in:
xiaojunnuo
2024-12-24 23:23:02 +08:00
parent d3935219f2
commit 4a00a3cc1b

View File

@@ -36,10 +36,6 @@ export class Locker {
}
unlock(str: string) {
const isLocked = this.locked[str];
if (isLocked != null) {
return;
}
delete this.locked[str];
}