Update EcsDebug.cs

This commit is contained in:
Mikhail 2024-09-12 04:05:43 +08:00
parent 8613dc3321
commit 856082d1aa

View File

@ -1,6 +1,5 @@
using DCFApixels.DragonECS.Internal; using DCFApixels.DragonECS.Internal;
using System; using System;
using System.Collections.Concurrent;
using System.Collections.Generic; using System.Collections.Generic;
using System.Diagnostics; using System.Diagnostics;
using System.Linq; using System.Linq;
@ -215,7 +214,6 @@ namespace DCFApixels.DragonECS
lock (_lock) lock (_lock)
{ {
int id = _nameIdTable[name]; int id = _nameIdTable[name];
//TODO проверить TryRemove
_nameIdTable.Remove(name); _nameIdTable.Remove(name);
_idDispenser.Release(id); _idDispenser.Release(id);
OnDelProfilerMark(id); OnDelProfilerMark(id);