Updates simulation map with coordinates in the list @param coords The list of coordinates
(List<Coord> coords)
| 119 | * @param coords The list of coordinates |
| 120 | */ |
| 121 | private void updateMap(List<Coord> coords) { |
| 122 | MapNode previousNode = null; |
| 123 | for (Coord c : coords) { |
| 124 | previousNode = createOrUpdateNode(c, previousNode); |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * Creates or updates a node that is in location c and next to |
no test coverage detected