diff --git a/src/com/gpl/rpg/atcontentstudio/ui/map/WorldMapView.java b/src/com/gpl/rpg/atcontentstudio/ui/map/WorldMapView.java index 68f16e9..796710a 100644 --- a/src/com/gpl/rpg/atcontentstudio/ui/map/WorldMapView.java +++ b/src/com/gpl/rpg/atcontentstudio/ui/map/WorldMapView.java @@ -521,16 +521,6 @@ public class WorldMapView extends JComponent implements Scrollable { } worldmap.getProject().getMap(id).addBacklink(worldmap); } - - List toRemove = new ArrayList(); - for (String s : worldmap.labels.keySet()) { - if (!mapLocations.containsKey(s)) { - toRemove.add(s); - } - } - for (String s : toRemove) { - worldmap.labels.remove(s); - } } }