This commit is contained in:
Володя 2022-11-20 02:10:51 +03:00
parent 2bdfda9ce9
commit 6e9883932e

View File

@ -26,16 +26,15 @@ namespace AirPlaneWithRadar
public void AddMap(string name, AbstractMap map) public void AddMap(string name, AbstractMap map)
{ {
Keys.Add(name); if (_mapStorages.ContainsKey(name))
return;
_mapStorages.Add(name, new MapWithSetPlainGeneric<DrawingObjectPlane, AbstractMap>(_pictureWidth, _pictureHeight, map)); _mapStorages.Add(name, new MapWithSetPlainGeneric<DrawingObjectPlane, AbstractMap>(_pictureWidth, _pictureHeight, map));
} }
public void DelMap(string name) public void DelMap(string name)
{ {
if (!_mapStorages.ContainsKey(name))
return;
Keys.Remove(name);
_mapStorages.Remove(name); _mapStorages.Remove(name);
} }